mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Co-authored-by: Killian <49700375+KillianKirilenko@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
/*
|
|
* SC Engineering
|
|
*/
|
|
|
|
|
|
/obj/structure/closet/secure_closet/engineering_chief_wardrobe
|
|
name = "chief engineer's wardrobe"
|
|
req_access = list(access_ce)
|
|
closet_appearance = /decl/closet_appearance/secure_closet/engineering/ce
|
|
|
|
starts_with = list(
|
|
/obj/item/clothing/under/rank/chief_engineer,
|
|
/obj/item/clothing/under/rank/chief_engineer/skirt,
|
|
/obj/item/clothing/head/hardhat/white,
|
|
/obj/item/clothing/shoes/brown,
|
|
/obj/item/cartridge/ce,
|
|
/obj/item/radio/headset/heads/ce,
|
|
/obj/item/radio/headset/alt/heads/ce,
|
|
/obj/item/clothing/suit/storage/hazardvest,
|
|
/obj/item/clothing/mask/gas,
|
|
/obj/item/tank/emergency/oxygen/engi,
|
|
/obj/item/taperoll/engineering,
|
|
/obj/item/clothing/suit/storage/hooded/wintercoat/engineering)
|
|
|
|
/obj/structure/closet/secure_closet/engineering_chief_wardrobe/Initialize()
|
|
if(prob(50))
|
|
starts_with += /obj/item/storage/backpack/industrial
|
|
else
|
|
starts_with += /obj/item/storage/backpack/satchel/eng
|
|
if(prob(50))
|
|
starts_with += /obj/item/storage/backpack/dufflebag/eng
|
|
return ..()
|