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
Showing
9 changed files
with
354 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
|
@@ -32,5 +32,6 @@ | |
#include "code/toggles.dm" | ||
#include "code/under.dm" | ||
#include "code/weapons.dm" | ||
#include "code/boxes.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,108 @@ | ||
// nanotrasen survival box | ||
/obj/item/storage/box/survival/nanotrasen | ||
name = "nanotrasen survival box" | ||
icon = 'mod_celadon/_storge_icons/icons/survival_boxes.dmi' | ||
icon_state = "box_survival_nt_alt" | ||
mask_type = null | ||
internal_type = null | ||
medipen_type = null | ||
radio_type = null | ||
/obj/item/storage/box/survival/nanotrasen/PopulateContents() | ||
var/static/items_inside = list( | ||
/obj/item/clothing/mask/breath = 1,\ | ||
/obj/item/tank/internals/emergency_oxygen/engi = 1,\ | ||
/obj/item/reagent_containers/hypospray/medipen = 1,\ | ||
/obj/item/reagent_containers/pill/penacid = 1,\ | ||
/obj/item/reagent_containers/food/snacks/ration = 1,\ | ||
/obj/item/radio = 1,\ | ||
/obj/item/crowbar = 1,\ | ||
) | ||
generate_items_inside(items_inside,src) | ||
|
||
|
||
// syndicate survival box | ||
/obj/item/storage/box/survival/syndicate | ||
name = "syndicate survival box" | ||
icon = 'mod_celadon/_storge_icons/icons/survival_boxes.dmi' | ||
icon_state = "box_survival_syn" | ||
mask_type = null | ||
internal_type = null | ||
medipen_type = null | ||
radio_type = null | ||
/obj/item/storage/box/survival/syndicate/PopulateContents() | ||
var/static/items_inside = list( | ||
/obj/item/clothing/mask/gas/syndicate = 1,\ | ||
/obj/item/tank/internals/emergency_oxygen/engi = 1,\ | ||
/obj/item/reagent_containers/hypospray/medipen/atropine = 1,\ | ||
/obj/item/reagent_containers/pill/penacid = 1,\ | ||
/obj/item/reagent_containers/food/snacks/donkpocket/warm = 1,\ | ||
/obj/item/radio = 1,\ | ||
/obj/item/crowbar/syndie = 1,\ | ||
) | ||
generate_items_inside(items_inside,src) | ||
|
||
|
||
// inteq survival box | ||
/obj/item/storage/box/survival/inteq | ||
name = "inteq survival box" | ||
icon = 'mod_celadon/_storge_icons/icons/survival_boxes.dmi' | ||
icon_state = "box_survival_iq" | ||
mask_type = null | ||
internal_type = null | ||
medipen_type = null | ||
radio_type = null | ||
/obj/item/storage/box/survival/inteq/PopulateContents() | ||
var/static/items_inside = list( | ||
/obj/item/clothing/mask/gas/sechailer/balaclava/inteq = 1,\ | ||
/obj/item/tank/internals/emergency_oxygen/engi = 1,\ | ||
/obj/item/reagent_containers/hypospray/medipen/atropine = 1,\ | ||
/obj/item/reagent_containers/pill/penacid = 1,\ | ||
/obj/item/reagent_containers/food/snacks/rationpack = 1,\ | ||
/obj/item/radio = 1,\ | ||
/obj/item/crowbar/red = 1,\ | ||
) | ||
generate_items_inside(items_inside,src) | ||
|
||
|
||
// solfed survival box | ||
/obj/item/storage/box/survival/solfed | ||
name = "solfed survival box" | ||
icon = 'mod_celadon/_storge_icons/icons/survival_boxes.dmi' | ||
icon_state = "box_survival_sol" | ||
mask_type = null | ||
internal_type = null | ||
medipen_type = null | ||
radio_type = null | ||
/obj/item/storage/box/survival/solfed/PopulateContents() | ||
var/static/items_inside = list( | ||
/obj/item/clothing/mask/breath = 1,\ | ||
/obj/item/tank/internals/emergency_oxygen/engi = 1,\ | ||
/obj/item/reagent_containers/hypospray/medipen = 1,\ | ||
/obj/item/reagent_containers/pill/penacid = 1,\ | ||
/obj/item/reagent_containers/food/snacks/ration = 1,\ | ||
/obj/item/radio = 1,\ | ||
/obj/item/crowbar = 1,\ | ||
) | ||
generate_items_inside(items_inside,src) | ||
|
||
|
||
// independent & elisium survival box | ||
/obj/item/storage/box/survival/independent | ||
name = "mass-produced survival box" | ||
icon = 'mod_celadon/_storge_icons/icons/survival_boxes.dmi' | ||
icon_state = "box_survival_ind" | ||
mask_type = null | ||
internal_type = null | ||
medipen_type = null | ||
radio_type = null | ||
/obj/item/storage/box/survival/independent/PopulateContents() | ||
var/static/items_inside = list( | ||
/obj/item/clothing/mask/breath = 1,\ | ||
/obj/item/tank/internals/emergency_oxygen = 1,\ | ||
/obj/item/reagent_containers/hypospray/medipen = 1,\ | ||
/obj/item/reagent_containers/pill/charcoal = 1,\ | ||
/obj/item/reagent_containers/food/snacks/ration/bar = 1,\ | ||
/obj/item/flashlight/flare = 1,\ | ||
/obj/item/radio = 1,\ | ||
) | ||
generate_items_inside(items_inside,src) |
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
55 changes: 55 additions & 0 deletions
55
mod_celadon/outfit/code/independent/outfit_ship/independent.dm
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
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
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
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
Oops, something went wrong.