mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 12:29:23 +01:00
Adds rival corp voidsuits (#8389)
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
icon_state = "closed"
|
||||
density = 1
|
||||
w_class = 5
|
||||
layer = OBJ_LAYER - 0.01
|
||||
var/icon_closed = "closed"
|
||||
var/icon_opened = "open"
|
||||
var/welded_overlay_state = "welded"
|
||||
|
||||
@@ -502,6 +502,20 @@
|
||||
icon_opened = "largebinopen"
|
||||
icon_closed = "largebin"
|
||||
|
||||
/obj/structure/closet/crate/drop
|
||||
name = "drop crate"
|
||||
desc = "A large, sturdy crate meant for airdrops."
|
||||
icon_state = "dropcrate"
|
||||
icon_opened = "dropcrate-open"
|
||||
icon_closed = "dropcrate"
|
||||
|
||||
/obj/structure/closet/crate/drop/grey
|
||||
name = "drop crate"
|
||||
desc = "A large, sturdy crate meant for airdrops."
|
||||
icon_state = "dropcrate-grey"
|
||||
icon_opened = "dropcrate-grey-open"
|
||||
icon_closed = "dropcrate-grey"
|
||||
|
||||
/obj/structure/closet/crate/radiation
|
||||
name = "radioactive gear crate"
|
||||
desc = "A crate with a radiation sign on it."
|
||||
@@ -533,7 +547,6 @@
|
||||
icon_opened = "tcflcrateopen"
|
||||
icon_closed = "tcflcrate"
|
||||
req_access = list(access_legion)
|
||||
layer = OBJ_LAYER - 0.01
|
||||
|
||||
/obj/structure/closet/crate/secure/phoron
|
||||
name = "phoron crate"
|
||||
|
||||
@@ -3,6 +3,34 @@
|
||||
name = "gear crate"
|
||||
req_access = list(access_syndicate)
|
||||
|
||||
/obj/structure/closet/crate/gear_loadout/hephaestus
|
||||
desc = "A sturdy crate with Hephaestus Industries branding."
|
||||
name = "hephaestus drop crate"
|
||||
icon_state = "hephcrate"
|
||||
icon_opened = "hephcrateopen"
|
||||
icon_closed = "hephcrate"
|
||||
|
||||
/obj/structure/closet/crate/gear_loadout/zenghu
|
||||
desc = "A sturdy crate with Zeng-Hu Pharmaceuticals branding."
|
||||
name = "zeng-hu drop crate"
|
||||
icon_state = "zenghucrate"
|
||||
icon_opened = "zenghucrateopen"
|
||||
icon_closed = "zenghucrate"
|
||||
|
||||
/obj/structure/closet/crate/gear_loadout/einstein
|
||||
desc = "A sturdy crate with Einstein Engines branding."
|
||||
name = "einstein drop crate"
|
||||
icon_state = "einsteincrate"
|
||||
icon_opened = "einsteincrateopen"
|
||||
icon_closed = "einsteincrate"
|
||||
|
||||
/obj/structure/closet/crate/gear_loadout/necropolis
|
||||
desc = "A sturdy crate with Necropolis Industries branding."
|
||||
name = "necropolis drop crate"
|
||||
icon_state = "necrocrate"
|
||||
icon_opened = "necrocrateopen"
|
||||
icon_closed = "necrocrate"
|
||||
|
||||
/obj/structure/closet/crate/secure/gear_loadout/coalition/fill()
|
||||
new /obj/item/rig/gunslinger/equipped(src)
|
||||
new /obj/item/clothing/head/helmet/space/void/coalition(src)
|
||||
@@ -207,4 +235,28 @@
|
||||
new /obj/item/clothing/accessory/holster/thigh(src)
|
||||
new /obj/item/clothing/head/cowboy(src)
|
||||
new /obj/item/melee/whip(src)
|
||||
new /obj/item/gun/projectile/revolver/detective(src)
|
||||
new /obj/item/gun/projectile/revolver/detective(src)
|
||||
//Megacorporate suits are used in devices and tools in the uplink
|
||||
/obj/structure/closet/crate/gear_loadout/necropolis/fill()
|
||||
new /obj/item/clothing/head/helmet/space/void/necropolis(src)
|
||||
new /obj/item/clothing/suit/space/void/necropolis(src)
|
||||
new /obj/item/tank/oxygen/red(src)
|
||||
new /obj/item/clothing/shoes/magboots(src)
|
||||
|
||||
/obj/structure/closet/crate/gear_loadout/zenghu/fill()
|
||||
new /obj/item/clothing/head/helmet/space/void/zenghu(src)
|
||||
new /obj/item/clothing/suit/space/void/zenghu(src)
|
||||
new /obj/item/tank/oxygen/red(src)
|
||||
new /obj/item/clothing/shoes/magboots(src)
|
||||
|
||||
/obj/structure/closet/crate/gear_loadout/hephaestus/fill()
|
||||
new /obj/item/clothing/head/helmet/space/void/hephaestus(src)
|
||||
new /obj/item/clothing/suit/space/void/hephaestus(src)
|
||||
new /obj/item/tank/oxygen/red(src)
|
||||
new /obj/item/clothing/shoes/magboots(src)
|
||||
|
||||
/obj/structure/closet/crate/gear_loadout/einstein/fill()
|
||||
new /obj/item/clothing/head/helmet/space/void/einstein(src)
|
||||
new /obj/item/clothing/suit/space/void/einstein(src)
|
||||
new /obj/item/tank/oxygen/red(src)
|
||||
new /obj/item/clothing/shoes/magboots(src)
|
||||
Reference in New Issue
Block a user