forked from shiptest-ss13/Shiptest
-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'CeladonSS13:beta-dev' into beta-dev
- Loading branch information
Showing
19 changed files
with
7,391 additions
and
18 deletions.
There are no files selected for viewing
7,056 changes: 7,056 additions & 0 deletions
7,056
_maps/_mod_celadon/RandomRuins/WasteRuins/wasteplanet_claw_ruin.dmm
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,5 +33,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 |
---|---|---|
@@ -1,6 +1,110 @@ | ||
// NTAS/ERT special survival box | ||
/obj/item/storage/box/survival/ntert | ||
mask_type = /obj/item/clothing/mask/gas/sechailer | ||
internal_type = /obj/item/tank/internals/emergency_oxygen/double | ||
medipen_type = /obj/item/reagent_containers/hypospray/medipen | ||
radio_type = /obj/item/radio | ||
|
||
// 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/obj/structure/closet/crate/necropolis/claw_phase_2 | ||
name = "Claw Chest" | ||
|
||
/obj/structure/closet/crate/necropolis/claw_phase_2/PopulateContents() | ||
new /obj/item/minigunpack(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
Oops, something went wrong.