mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-08 07:08:30 +00:00
* Adminbus and Shelter Capsule Updates - Adds weapon cell boxes, which contain 7 weapon cells. For now adminbus only. - ERT Ship gets a couple denecrotizers, reinforced insulated gloves, weapon cell boxes, and a minor bugfix - Updated an adminbus deployable dropship - Updated uplinks with reinforced insulated gloves and weapon cell boxes - Fixes a load error with Ascian's shelter capsule, adds a missing health analyzer - Adds Survival Watch and Emergency Beacon to Luxury Shelter Capsule and Ascian's Shelter capsule - Replaces Escape Pod shelter capsule in the Curious Coin trader with a Frontier Translocator * Fixes accidental double commas * Casino spawner nade adjustments * Buffs the Dropship's SMES * Updates Shelter capsule medical supplies
57 lines
2.4 KiB
Plaintext
57 lines
2.4 KiB
Plaintext
/obj/item/weapon/storage/box/explorerkeys
|
|
name = "box of volunteer headsets"
|
|
desc = "A box full of volunteer headsets, for issuing out to exploration volunteers."
|
|
starts_with = list(/obj/item/device/radio/headset/explorer = 7)
|
|
|
|
/obj/item/weapon/storage/box/commandkeys
|
|
name = "box of command keys"
|
|
desc = "A box full of command keys, for command to give out as necessary."
|
|
starts_with = list(/obj/item/device/encryptionkey/headset_com = 7)
|
|
|
|
/obj/item/weapon/storage/box/servicekeys
|
|
name = "box of service keys"
|
|
desc = "A box full of service keys, for the HoP to give out as necessary."
|
|
starts_with = list(/obj/item/device/encryptionkey/headset_service = 7)
|
|
|
|
/obj/item/weapon/storage/box/survival/space
|
|
name = "boxed emergency suit and helmet"
|
|
icon_state = "survival_comp3"
|
|
starts_with = list(
|
|
/obj/item/clothing/suit/space/emergency,
|
|
/obj/item/clothing/head/helmet/space/emergency,
|
|
/obj/item/clothing/mask/breath,
|
|
/obj/item/weapon/tank/emergency/oxygen/double
|
|
)
|
|
|
|
/obj/item/weapon/storage/secure/briefcase/trashmoney
|
|
starts_with = list(/obj/item/weapon/spacecash/c200 = 10)
|
|
|
|
/obj/item/weapon/storage/box/brainzsnax
|
|
name = "\improper BrainzSnax box"
|
|
icon_state = "brainzsnax_box"
|
|
desc = "A box designed to hold canned food. This one has BrainzSnax branding printed on it."
|
|
can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/canned)
|
|
max_storage_space = ITEMSIZE_COST_NORMAL * 6
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax = 6)
|
|
|
|
/obj/item/weapon/storage/box/brainzsnax/red
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax/red = 6)
|
|
|
|
/obj/item/weapon/storage/box/freezer
|
|
can_hold = list(/obj/item/organ, /obj/item/weapon/reagent_containers/blood, /obj/item/weapon/reagent_containers/glass, /obj/item/weapon/reagent_containers/food)
|
|
|
|
/obj/item/weapon/storage/box/altevian_ammo
|
|
name = "SAM .48 ammo box"
|
|
desc = "A box of ratty ammo."
|
|
icon_state = "secbox"
|
|
starts_with = list(/obj/item/ammo_magazine/sam48 = 3)
|
|
max_storage_space = ITEMSIZE_COST_NORMAL * 3
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/weapon_cells
|
|
name = "box of weapon cells"
|
|
desc = "A box full of weapon power cells. For all your portable energy storage needs."
|
|
icon_state = "secbox"
|
|
starts_with = list(/obj/item/weapon/cell/device/weapon = 7)
|