mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-10 09:23:18 +00:00
113 lines
2.9 KiB
Plaintext
113 lines
2.9 KiB
Plaintext
|
|
/datum/supply_pack/misc/beltminer
|
|
name = "Belt-miner gear crate"
|
|
contains = list(
|
|
/obj/item/weapon/gun/energy/particle = 2,
|
|
/obj/item/weapon/cell/device/weapon = 2,
|
|
/obj/item/weapon/storage/firstaid/regular = 1,
|
|
/obj/item/device/gps = 2,
|
|
/obj/item/weapon/storage/box/traumainjectors = 1,
|
|
/obj/item/device/binoculars = 1
|
|
)
|
|
cost = 60
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "Belt-miner gear crate"
|
|
access = list(access_mining,
|
|
access_xenoarch)
|
|
one_access = TRUE
|
|
|
|
/datum/supply_pack/misc/eva_rig
|
|
name = "eva hardsuit (empty)"
|
|
contains = list(
|
|
/obj/item/weapon/rig/eva = 1
|
|
)
|
|
cost = 150
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "eva hardsuit crate"
|
|
access = list(access_mining,
|
|
access_eva,
|
|
access_explorer,
|
|
access_pilot)
|
|
one_access = TRUE
|
|
|
|
/datum/supply_pack/misc/mining_rig
|
|
name = "industrial hardsuit (empty)"
|
|
contains = list(
|
|
/obj/item/weapon/rig/industrial = 1
|
|
)
|
|
cost = 150
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "industrial hardsuit crate"
|
|
access = list(access_mining,
|
|
access_eva)
|
|
one_access = TRUE
|
|
|
|
/datum/supply_pack/misc/medical_rig
|
|
name = "medical hardsuit (empty)"
|
|
contains = list(
|
|
/obj/item/weapon/rig/medical = 1
|
|
)
|
|
cost = 150
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "medical hardsuit crate"
|
|
access = access_medical
|
|
|
|
/datum/supply_pack/misc/security_rig
|
|
name = "hazard hardsuit (empty)"
|
|
contains = list(
|
|
/obj/item/weapon/rig/hazard = 1
|
|
)
|
|
cost = 150
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "hazard hardsuit crate"
|
|
access = access_armory
|
|
|
|
/datum/supply_pack/misc/science_rig
|
|
name = "ami hardsuit (empty)"
|
|
contains = list(
|
|
/obj/item/weapon/rig/hazmat = 1
|
|
)
|
|
cost = 150
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "ami hardsuit crate"
|
|
access = access_rd
|
|
|
|
/datum/supply_pack/misc/ce_rig
|
|
name = "advanced voidsuit (empty)"
|
|
contains = list(
|
|
/obj/item/weapon/rig/ce = 1
|
|
)
|
|
cost = 150
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "advanced voidsuit crate"
|
|
access = access_ce
|
|
|
|
/datum/supply_pack/misc/jetpack
|
|
name = "jetpack (empty)"
|
|
contains = list(
|
|
/obj/item/weapon/tank/jetpack = 1
|
|
)
|
|
cost = 75
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "jetpack crate"
|
|
access = list(access_mining,
|
|
access_xenoarch,
|
|
access_eva,
|
|
access_explorer,
|
|
access_pilot)
|
|
one_access = TRUE
|
|
|
|
/datum/supply_pack/randomised/misc/explorer_shield
|
|
name = "Explorer shield"
|
|
num_contained = 2
|
|
contains = list(
|
|
/obj/item/weapon/shield/riot/explorer,
|
|
/obj/item/weapon/shield/riot/explorer/purple
|
|
)
|
|
cost = 75
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "exploration shield crate"
|
|
access = list(access_explorer,
|
|
access_eva,
|
|
access_pilot)
|
|
one_access = TRUE |