mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-07-14 16:43:05 +01:00
34 lines
969 B
Plaintext
34 lines
969 B
Plaintext
|
|
/datum/supply_packs/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
|
|
)
|
|
cost = 50
|
|
containertype = /obj/structure/closet/crate/secure/gear
|
|
containername = "Belt-miner gear crate"
|
|
access = access_mining
|
|
|
|
/datum/supply_packs/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 = access_mining
|
|
|
|
/datum/supply_packs/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 = access_mining |