forked from shiptest-ss13/Shiptest
-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60fff2b
commit 73f0e9b
Showing
5 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/datum/modpack/design_disks | ||
name = "Диски" | ||
desc = "Добавляет диски с чертежами." | ||
author = "Leopold" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#ifndef MODPACK_CELADON_DESIGN_DISKS | ||
#define MODPACK_CELADON_DESIGN_DISKS | ||
|
||
#include "_design_disks.dm" | ||
|
||
#include "code/designs.dm" | ||
#include "code/packs/disks.dm" | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/obj/item/disk/design_disk/cybernetic_organs_basic | ||
name = "Design Disk - Basic cybernetic organs" | ||
desc = "A design disk containing the pattern for basic cybernetic organs." | ||
max_blueprints = 5 | ||
|
||
/obj/item/disk/design_disk/cybernetic_organs_basic/Initialize() | ||
. = ..() | ||
blueprints[1] = new /datum/design/cybernetic_liver() | ||
blueprints[2] = new /datum/design/cybernetic_heart() | ||
blueprints[3] = new /datum/design/cybernetic_lungs() | ||
blueprints[4] = new /datum/design/cybernetic_stomach() | ||
blueprints[5] = new /datum/design/cybernetic_ears() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/datum/supply_pack/disks | ||
group = "Design disks" | ||
|
||
|
||
|
||
/datum/supply_pack/disks/cybernetic_organs_basic | ||
name = "Basic cybernetic organs" | ||
desc = "Contains a disk with designs of basic cybernetic organs." | ||
contains = list(/obj/item/disk/design_disk/cybernetic_organs_basic,) | ||
cost = 2000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters