Files
siliconsandGitHub 6394f34694 repaths projectile weapons from /obj/item/gun/* to /obj/item/gun/projectile/* (#6997)
tl;dr we don't want snowflaking for "projectile firing gun" to be the
same as "launcher firing gun" so we're separating them

this is in prep for #6740
2025-02-14 22:38:22 -07:00

99 lines
3.5 KiB
Plaintext

/obj/structure/closet/secure_closet/cargotech
name = "cargo technician's locker"
req_access = list(ACCESS_SUPPLY_BAY)
closet_appearance = /singleton/closet_appearance/secure_closet/cargo
starts_with = list(
/obj/item/clothing/under/rank/cargotech,
/obj/item/clothing/under/rank/cargotech/skirt,
/obj/item/clothing/under/rank/cargotech/skirt_pleated,
/obj/item/clothing/under/rank/cargotech/jeans,
/obj/item/clothing/under/rank/cargotech/jeans/female,
/obj/item/clothing/suit/storage/hooded/wintercoat/cargo,
/obj/item/clothing/shoes/boots/winter/supply,
/obj/item/clothing/shoes/black,
/obj/item/radio/headset/headset_cargo,
/obj/item/radio/headset/headset_cargo/alt,
/obj/item/clothing/gloves/black,
/obj/item/clothing/suit/storage/hooded/wintercoat/cargo,
/obj/item/clothing/gloves/fingerless,
/obj/item/stamp/cargo,
/obj/item/clothing/head/soft)
/obj/structure/closet/secure_closet/cargotech/Initialize(mapload)
if(prob(75))
starts_with += /obj/item/storage/backpack
else
starts_with += /obj/item/storage/backpack/satchel/norm
if(prob(25))
starts_with += /obj/item/storage/backpack/dufflebag
return ..()
/obj/structure/closet/secure_closet/quartermaster
name = "quartermaster's locker"
req_access = list(ACCESS_SUPPLY_QM)
closet_appearance = /singleton/closet_appearance/secure_closet/cargo/qm
starts_with = list(
/obj/item/clothing/under/rank/cargo,
/obj/item/clothing/under/rank/cargo/skirt,
/obj/item/clothing/under/rank/cargo/skirt_pleated,
/obj/item/clothing/under/rank/cargo/jeans,
/obj/item/clothing/under/rank/cargo/jeans/female,
/obj/item/clothing/shoes/brown,
/obj/item/radio/headset/headset_cargo,
/obj/item/radio/headset/headset_cargo/alt,
/obj/item/radio/headset/headset_mine,
/obj/item/clothing/gloves/black,
/obj/item/clothing/gloves/fingerless,
/obj/item/clothing/suit/fire/firefighter,
/obj/item/clothing/suit/storage/hooded/wintercoat/qm,
/obj/item/tank/emergency/oxygen,
/obj/item/clothing/mask/gas,
/obj/item/clothing/glasses/meson,
/obj/item/clothing/head/soft,
/obj/item/clothing/suit/storage/hooded/wintercoat/cargo,
/obj/item/clothing/shoes/boots/winter/supply)
/obj/structure/closet/secure_closet/quartermaster/Initialize(mapload)
if(prob(75))
starts_with += /obj/item/storage/backpack
else
starts_with += /obj/item/storage/backpack/satchel/norm
if(prob(25))
starts_with += /obj/item/storage/backpack/dufflebag
return ..()
/obj/structure/closet/secure_closet/miner
name = "miner's equipment"
closet_appearance = /singleton/closet_appearance/secure_closet/mining
req_access = list(ACCESS_SUPPLY_MINE)
starts_with = list(
/obj/item/radio/headset/headset_mine,
/obj/item/clothing/under/rank/miner,
/obj/item/clothing/gloves/black,
/obj/item/clothing/shoes/black,
/obj/item/atmos_analyzer,
/obj/item/storage/bag/ore,
/obj/item/flashlight/lantern,
/obj/item/shovel,
/obj/item/pickaxe,
/obj/item/mining_scanner,
/obj/item/gps/mining,
/obj/item/survivalcapsule,
/obj/item/clothing/glasses/meson,
/obj/item/clothing/suit/storage/hooded/miner,
/obj/item/clothing/suit/storage/hooded/wintercoat/miner,
/obj/item/clothing/shoes/boots/winter/mining,
/obj/item/reagent_containers/portable_fuelcan/miniature,
/obj/item/stack/marker_beacon/thirty,
/obj/item/gun/projectile/energy/kinetic_accelerator)
/obj/structure/closet/secure_closet/miner/Initialize(mapload)
if(prob(50))
starts_with += /obj/item/storage/backpack/industrial
else
starts_with += /obj/item/storage/backpack/satchel/eng
return ..()