mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-20 07:02:30 +00:00
554 lines
22 KiB
Plaintext
554 lines
22 KiB
Plaintext
/*
|
|
* Everything derived from the common cardboard box.
|
|
* Basically everything except the original is a kit (starts full).
|
|
*
|
|
* Contains:
|
|
* Empty box, starter boxes (survival/engineer),
|
|
* Latex glove and sterile mask boxes,
|
|
* Syringe, beaker, dna injector boxes,
|
|
* Blanks, flashbangs, and EMP grenade boxes,
|
|
* Tracking and chemical implant boxes,
|
|
* Prescription glasses and drinking glass boxes,
|
|
* Condiment bottle and silly cup boxes,
|
|
* Donkpocket and monkeycube boxes,
|
|
* ID and security PDA cart boxes,
|
|
* Handcuff, mousetrap, and pillbottle boxes,
|
|
* Snap-pops and matchboxes,
|
|
* Replacement light boxes.
|
|
*
|
|
* For syndicate call-ins see uplink_kits.dm
|
|
*/
|
|
|
|
/obj/item/weapon/storage/box
|
|
name = "box"
|
|
desc = "It's just an ordinary box."
|
|
icon_state = "box"
|
|
item_state = "syringe_kit"
|
|
center_of_mass = list("x" = 13,"y" = 10)
|
|
var/foldable = /obj/item/stack/material/cardboard // BubbleWrap - if set, can be folded (when empty) into a sheet of cardboard
|
|
var/trash = null // if set, can be crushed into a trash item when empty
|
|
max_w_class = ITEMSIZE_SMALL
|
|
max_storage_space = INVENTORY_BOX_SPACE
|
|
use_sound = 'sound/items/storage/box.ogg'
|
|
drop_sound = 'sound/items/drop/cardboardbox.ogg'
|
|
pickup_sound = 'sound/items/pickup/cardboardbox.ogg'
|
|
|
|
// BubbleWrap - A box can be folded up to make card
|
|
/obj/item/weapon/storage/box/attack_self(mob/user as mob)
|
|
if(..()) return
|
|
|
|
//try to fold it
|
|
if(ispath(foldable))
|
|
if (contents.len)
|
|
return
|
|
var/found = 0
|
|
// Close any open UI windows first
|
|
for(var/mob/M in range(1))
|
|
if (M.s_active == src)
|
|
close(M)
|
|
if (M == user)
|
|
found = 1
|
|
if (!found) // User is too far away
|
|
return
|
|
// Now make the cardboard
|
|
to_chat(user, "<span class='notice'>You fold [src] flat.</span>")
|
|
playsound(src, 'sound/items/storage/boxfold.ogg', 30, 1)
|
|
new foldable(get_turf(src))
|
|
qdel(src)
|
|
|
|
//try to crush it
|
|
if(ispath(trash))
|
|
if(contents.len && user.a_intent == I_HURT) // only crumple with things inside on harmintent.
|
|
user.visible_message(SPAN_DANGER("[user] crushes \the [src], spilling its contents everywhere!"), SPAN_DANGER("You crush \the [src], spilling its contents everywhere!"))
|
|
spill()
|
|
else
|
|
to_chat(user, SPAN_NOTICE("You crumple up \the [src].")) //make trash
|
|
playsound(src.loc, 'sound/items/drop/wrapper.ogg', 30, 1)
|
|
var/obj/item/trash = new src.trash()
|
|
qdel(src)
|
|
user.put_in_hands(trash)
|
|
|
|
|
|
/obj/item/weapon/storage/box/survival
|
|
name = "emergency supply box"
|
|
desc = "A survival box issued to crew members for use in emergency situations."
|
|
starts_with = list(
|
|
/obj/item/clothing/mask/breath
|
|
)
|
|
|
|
/obj/item/weapon/storage/box/survival/synth
|
|
name = "synthetic supply box"
|
|
desc = "A survival box issued to synthetic crew members for use in emergency situations."
|
|
starts_with = list()
|
|
|
|
/obj/item/weapon/storage/box/survival/comp
|
|
name = "emergency supply box"
|
|
desc = "A comprehensive survival box issued to crew members for use in emergency situations. Contains additional supplies."
|
|
icon_state = "survival"
|
|
starts_with = list(
|
|
/obj/item/weapon/reagent_containers/hypospray/autoinjector,
|
|
/obj/item/stack/medical/bruise_pack,
|
|
/obj/item/device/flashlight/glowstick,
|
|
/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,
|
|
/obj/item/clothing/mask/breath
|
|
)
|
|
|
|
/obj/item/weapon/storage/box/gloves
|
|
name = "box of latex gloves"
|
|
desc = "Contains white gloves."
|
|
icon_state = "latex"
|
|
starts_with = list(/obj/item/clothing/gloves/sterile/latex = 7)
|
|
|
|
/obj/item/weapon/storage/box/masks
|
|
name = "box of sterile masks"
|
|
desc = "This box contains masks of sterility."
|
|
icon_state = "sterile"
|
|
starts_with = list(/obj/item/clothing/mask/surgical = 7)
|
|
|
|
/obj/item/weapon/storage/box/syringes
|
|
name = "box of syringes"
|
|
desc = "A box full of syringes."
|
|
icon_state = "syringe"
|
|
starts_with = list(/obj/item/weapon/reagent_containers/syringe = 7)
|
|
|
|
/obj/item/weapon/storage/box/syringegun
|
|
name = "box of syringe gun cartridges"
|
|
desc = "A box full of compressed gas cartridges."
|
|
icon_state = "syringe"
|
|
starts_with = list(/obj/item/weapon/syringe_cartridge = 7)
|
|
|
|
/obj/item/weapon/storage/box/beakers
|
|
name = "box of beakers"
|
|
desc = "A box full of beakers."
|
|
icon_state = "beaker"
|
|
starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker = 7)
|
|
|
|
/obj/item/weapon/storage/box/injectors
|
|
name = "box of DNA injectors"
|
|
desc = "This box contains injectors it seems."
|
|
starts_with = list(
|
|
/obj/item/weapon/dnainjector/h2m = 3,
|
|
/obj/item/weapon/dnainjector/m2h = 3
|
|
)
|
|
|
|
/obj/item/weapon/storage/box/blanks
|
|
name = "box of blank shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front."
|
|
icon_state = "blankshot_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g/blank = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/blanks/large
|
|
starts_with = list(/obj/item/ammo_casing/a12g/blank = 16)
|
|
|
|
/obj/item/weapon/storage/box/beanbags
|
|
name = "box of beanbag shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
icon_state = "beanshot_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g/beanbag = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/beanbags/large/New()
|
|
starts_with = list(/obj/item/ammo_casing/a12g/beanbag = 16)
|
|
|
|
/obj/item/weapon/storage/box/shotgunammo
|
|
name = "box of shotgun slugs"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
icon_state = "lethalshellshot_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/shotgunammo/large
|
|
starts_with = list(/obj/item/ammo_casing/a12g = 16)
|
|
|
|
/obj/item/weapon/storage/box/shotgunshells
|
|
name = "box of shotgun shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
icon_state = "lethalslug_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g/pellet = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/shotgunshells/large
|
|
starts_with = list(/obj/item/ammo_casing/a12g/pellet = 16)
|
|
|
|
/obj/item/weapon/storage/box/flashshells
|
|
name = "box of illumination shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
icon_state = "illumshot_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g/flash = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/flashshells/large
|
|
starts_with = list(/obj/item/ammo_casing/a12g/flash = 16)
|
|
|
|
/obj/item/weapon/storage/box/stunshells
|
|
name = "box of stun shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
icon_state = "stunshot_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g/stunshell = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/stunshells/large
|
|
starts_with = list(/obj/item/ammo_casing/a12g/stunshell = 16)
|
|
|
|
/obj/item/weapon/storage/box/practiceshells
|
|
name = "box of practice shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
icon_state = "blankshot_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g/practice = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/practiceshells/large
|
|
starts_with = list(/obj/item/ammo_casing/a12g/practice = 16)
|
|
|
|
/obj/item/weapon/storage/box/empshells
|
|
name = "box of emp shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front."
|
|
icon_state = "empshot_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g/emp = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/empshells/large
|
|
starts_with = list(/obj/item/ammo_casing/a12g/emp = 16)
|
|
|
|
/obj/item/weapon/storage/box/flechetteshells
|
|
name = "box of shotgun flechettes"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
icon_state = "lethalslug_box"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(/obj/item/ammo_casing/a12g/flechette = 8)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/flechetteshells/large
|
|
starts_with = list(/obj/item/ammo_casing/a12g/flechette = 16)
|
|
|
|
/obj/item/weapon/storage/box/sniperammo
|
|
name = "box of 14.5mm shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
starts_with = list(/obj/item/ammo_casing/a145 = 7)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/sniperammo/highvel
|
|
name = "box of 14.5mm sabot shells"
|
|
desc = "It has a picture of a gun and several warning symbols on the front.<br>WARNING: Live ammunition. Misuse may result in serious injury or death."
|
|
starts_with = list(/obj/item/ammo_casing/a145/highvel = 7)
|
|
|
|
/obj/item/weapon/storage/box/flashbangs
|
|
name = "box of flashbangs (WARNING)"
|
|
desc = "<B>WARNING: These devices are extremely dangerous and can cause blindness or deafness in repeated use.</B>"
|
|
icon_state = "flashbang"
|
|
starts_with = list(/obj/item/weapon/grenade/flashbang = 7)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/emps
|
|
name = "box of emp grenades"
|
|
desc = "A box containing 5 military grade EMP grenades.<br> WARNING: Do not use near unshielded electronics or biomechanical augmentations, death or permanent paralysis may occur."
|
|
icon_state = "emp"
|
|
starts_with = list(/obj/item/weapon/grenade/empgrenade = 7)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/empslite
|
|
name = "box of low yield emp grenades"
|
|
desc = "A box containing 5 low yield EMP grenades.<br> WARNING: Do not use near unshielded electronics or biomechanical augmentations, death or permanent paralysis may occur."
|
|
icon_state = "emp"
|
|
starts_with = list(/obj/item/weapon/grenade/empgrenade/low_yield = 7)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/smokes
|
|
name = "box of smoke bombs"
|
|
desc = "A box containing 7 smoke bombs."
|
|
icon_state = "flashbang"
|
|
starts_with = list(/obj/item/weapon/grenade/smokebomb = 7)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/anti_photons
|
|
name = "box of anti-photon grenades"
|
|
desc = "A box containing 7 experimental photon disruption grenades."
|
|
icon_state = "flashbang"
|
|
starts_with = list(/obj/item/weapon/grenade/anti_photon = 7)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/frags
|
|
name = "box of fragmentation grenades (WARNING)"
|
|
desc = "A box containing 7 military grade fragmentation grenades.<br> WARNING: These devices are extremely dangerous and can cause limb loss or death in repeated use."
|
|
icon_state = "frag"
|
|
starts_with = list(/obj/item/weapon/grenade/explosive = 7)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/frags_half_box
|
|
name = "box of fragmentation grenades (WARNING)"
|
|
desc = "A box containing 4 military grade fragmentation grenades.<br> WARNING: These devices are extremely dangerous and can cause limb loss or death in repeated use."
|
|
icon_state = "frag"
|
|
starts_with = list(/obj/item/weapon/grenade/explosive = 4)
|
|
drop_sound = 'sound/items/drop/ammobox.ogg'
|
|
pickup_sound = 'sound/items/pickup/ammobox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/metalfoam
|
|
name = "box of metal foam grenades."
|
|
desc = "A box containing 7 metal foam grenades."
|
|
icon_state = "flashbang"
|
|
starts_with = list(/obj/item/weapon/grenade/chem_grenade/metalfoam = 7)
|
|
|
|
/obj/item/weapon/storage/box/teargas
|
|
name = "box of teargas grenades"
|
|
desc = "A box containing 7 teargas grenades."
|
|
icon_state = "flashbang"
|
|
starts_with = list(/obj/item/weapon/grenade/chem_grenade/teargas = 7)
|
|
|
|
/obj/item/weapon/storage/box/flare
|
|
name = "box of flares"
|
|
desc = "A box containing 4 flares."
|
|
starts_with = list(/obj/item/device/flashlight/flare = 4)
|
|
|
|
/obj/item/weapon/storage/box/trackimp
|
|
name = "boxed tracking implant kit"
|
|
desc = "Box full of scum-bag tracking utensils."
|
|
icon_state = "implant"
|
|
starts_with = list(
|
|
/obj/item/weapon/implantcase/tracking = 4,
|
|
/obj/item/weapon/implanter,
|
|
/obj/item/weapon/implantpad,
|
|
/obj/item/weapon/locator
|
|
)
|
|
|
|
/obj/item/weapon/storage/box/chemimp
|
|
name = "boxed chemical implant kit"
|
|
desc = "Box of stuff used to implant chemicals."
|
|
icon_state = "implant"
|
|
starts_with = list(
|
|
/obj/item/weapon/implantcase/chem = 5,
|
|
/obj/item/weapon/implanter,
|
|
/obj/item/weapon/implantpad
|
|
)
|
|
|
|
/obj/item/weapon/storage/box/camerabug
|
|
name = "mobile camera pod box"
|
|
desc = "A box containing some mobile camera pods."
|
|
icon_state = "pda"
|
|
starts_with = list(
|
|
/obj/item/device/camerabug = 6,
|
|
/obj/item/device/bug_monitor
|
|
)
|
|
|
|
/obj/item/weapon/storage/box/rxglasses
|
|
name = "box of prescription glasses"
|
|
desc = "This box contains nerd glasses."
|
|
icon_state = "glasses"
|
|
starts_with = list(/obj/item/clothing/glasses/regular = 7)
|
|
|
|
/obj/item/weapon/storage/box/cdeathalarm_kit
|
|
name = "death alarm kit"
|
|
desc = "Box of stuff used to implant death alarms."
|
|
icon_state = "implant"
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
starts_with = list(
|
|
/obj/item/weapon/implantcase/death_alarm = 7,
|
|
/obj/item/weapon/implanter
|
|
)
|
|
|
|
/obj/item/weapon/storage/box/condimentbottles
|
|
name = "box of condiment bottles"
|
|
desc = "It has a large ketchup smear on it."
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/condiment = 7)
|
|
|
|
/obj/item/weapon/storage/box/cups
|
|
name = "box of paper cups"
|
|
desc = "It has pictures of paper cups on the front."
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/drinks/sillycup = 7)
|
|
|
|
/obj/item/weapon/storage/box/donkpockets
|
|
name = "box of donk-pockets"
|
|
desc = "<B>Instructions:</B> <I>Heat in microwave. Product will cool if not eaten within seven minutes.</I>"
|
|
icon_state = "donk_kit"
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/donkpocket = 7)
|
|
|
|
/obj/item/weapon/storage/box/sinpockets
|
|
name = "box of sin-pockets"
|
|
desc = "<B>Instructions:</B> <I>Crush bottom of package to initiate chemical heating. Wait for 20 seconds before consumption. Product will cool if not eaten within seven minutes.</I>"
|
|
icon_state = "donk_kit"
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/donkpocket/sinpocket = 7)
|
|
|
|
/obj/item/weapon/storage/box/buns
|
|
name = "box of bread buns"
|
|
desc = "Freshly baked at some point in the past few months."
|
|
icon_state = "bun_box"
|
|
max_storage_space = ITEMSIZE_COST_NORMAL * 5
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/bun = 12)
|
|
|
|
/obj/item/weapon/storage/box/monkeycubes
|
|
name = "monkey cube box"
|
|
desc = "Drymate brand monkey cubes. Just add water!"
|
|
icon = 'icons/obj/food.dmi'
|
|
icon_state = "monkeycubebox"
|
|
can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/monkeycube)
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped = 4)
|
|
|
|
/obj/item/weapon/storage/box/monkeycubes/farwacubes
|
|
name = "farwa cube box"
|
|
desc = "Drymate brand farwa cubes, shipped from Meralar. Just add water!"
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/farwacube = 4)
|
|
|
|
/obj/item/weapon/storage/box/monkeycubes/stokcubes
|
|
name = "stok cube box"
|
|
desc = "Drymate brand stok cubes, shipped from Moghes. Just add water!"
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/stokcube = 4)
|
|
|
|
/obj/item/weapon/storage/box/monkeycubes/neaeracubes
|
|
name = "neaera cube box"
|
|
desc = "Drymate brand neaera cubes, shipped from Qerr'balak. Just add water!"
|
|
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/neaeracube = 4)
|
|
|
|
/obj/item/weapon/storage/box/ids
|
|
name = "box of spare IDs"
|
|
desc = "Has so many empty IDs."
|
|
icon_state = "id"
|
|
starts_with = list(/obj/item/weapon/card/id = 7)
|
|
|
|
/obj/item/weapon/storage/box/seccarts
|
|
name = "box of spare R.O.B.U.S.T. Cartridges"
|
|
desc = "A box full of R.O.B.U.S.T. Cartridges, used by Security."
|
|
icon_state = "pda"
|
|
starts_with = list(/obj/item/weapon/cartridge/security = 7)
|
|
|
|
/obj/item/weapon/storage/box/handcuffs
|
|
name = "box of spare handcuffs"
|
|
desc = "A box full of handcuffs."
|
|
icon_state = "handcuff"
|
|
starts_with = list(/obj/item/weapon/handcuffs = 7)
|
|
|
|
/obj/item/weapon/storage/box/mousetraps
|
|
name = "box of Pest-B-Gon mousetraps"
|
|
desc = "<B><FONT color='red'>WARNING:</FONT></B> <I>Keep out of reach of children</I>."
|
|
icon_state = "mousetraps"
|
|
starts_with = list(/obj/item/device/assembly/mousetrap = 7)
|
|
|
|
/obj/item/weapon/storage/box/pillbottles
|
|
name = "box of pill bottles"
|
|
desc = "It has pictures of pill bottles on its front."
|
|
starts_with = list(/obj/item/weapon/storage/pill_bottle = 7)
|
|
|
|
/obj/item/weapon/storage/box/snappops
|
|
name = "snap pop box"
|
|
desc = "Eight wrappers of fun! Ages 8 and up. Not suitable for children."
|
|
icon = 'icons/obj/toy.dmi'
|
|
icon_state = "spbox"
|
|
can_hold = list(/obj/item/toy/snappop)
|
|
starts_with = list(/obj/item/toy/snappop = 8)
|
|
|
|
/obj/item/weapon/storage/box/matches
|
|
name = "matchbox"
|
|
desc = "A small box of 'Space-Proof' premium matches."
|
|
icon = 'icons/obj/cigarettes.dmi'
|
|
icon_state = "matchbox"
|
|
w_class = ITEMSIZE_TINY
|
|
slot_flags = SLOT_BELT
|
|
can_hold = list(/obj/item/weapon/flame/match)
|
|
starts_with = list(/obj/item/weapon/flame/match = 10)
|
|
drop_sound = 'sound/items/drop/matchbox.ogg'
|
|
pickup_sound = 'sound/items/pickup/matchbox.ogg'
|
|
|
|
/obj/item/weapon/storage/box/matches/attackby(var/obj/item/weapon/flame/match/W, var/mob/user)
|
|
if(istype(W) && !W.lit && !W.burnt)
|
|
if(prob(25))
|
|
W.light(user)
|
|
user.visible_message("<span class='notice'>[user] manages to light the match on the matchbox.</span>")
|
|
else
|
|
playsound(src, 'sound/items/cigs_lighters/matchstick_hit.ogg', 25, 0, -1)
|
|
W.update_icon()
|
|
return
|
|
|
|
/obj/item/weapon/storage/box/autoinjectors
|
|
name = "box of injectors"
|
|
desc = "Contains autoinjectors."
|
|
icon_state = "syringe"
|
|
starts_with = list(/obj/item/weapon/reagent_containers/hypospray/autoinjector = 7)
|
|
|
|
/obj/item/weapon/storage/box/lights
|
|
name = "box of replacement bulbs"
|
|
icon = 'icons/obj/storage.dmi'
|
|
icon_state = "light"
|
|
desc = "This box is shaped on the inside so that only light tubes and bulbs fit."
|
|
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
|
|
storage_slots = 24
|
|
can_hold = list(/obj/item/weapon/light/tube, /obj/item/weapon/light/bulb)
|
|
max_storage_space = ITEMSIZE_COST_SMALL * 24 //holds 24 items of w_class 2
|
|
use_to_pickup = 1 // for picking up broken bulbs, not that most people will try
|
|
|
|
/obj/item/weapon/storage/box/lights/bulbs
|
|
starts_with = list(/obj/item/weapon/light/bulb = 24)
|
|
|
|
/obj/item/weapon/storage/box/lights/tubes
|
|
name = "box of replacement tubes"
|
|
icon_state = "lighttube"
|
|
starts_with = list(/obj/item/weapon/light/tube = 24)
|
|
|
|
/obj/item/weapon/storage/box/lights/mixed
|
|
name = "box of replacement lights"
|
|
icon_state = "lightmixed"
|
|
starts_with = list(
|
|
/obj/item/weapon/light/tube = 16,
|
|
/obj/item/weapon/light/bulb = 8
|
|
)
|
|
|
|
/obj/item/weapon/storage/box/freezer
|
|
name = "portable freezer"
|
|
desc = "This nifty shock-resistant device will keep your 'groceries' nice and non-spoiled."
|
|
icon = 'icons/obj/storage.dmi'
|
|
icon_state = "portafreezer"
|
|
item_state_slots = list(slot_r_hand_str = "medicalpack", slot_l_hand_str = "medicalpack")
|
|
foldable = null
|
|
max_w_class = ITEMSIZE_NORMAL
|
|
can_hold = list(/obj/item/organ)
|
|
max_storage_space = ITEMSIZE_COST_NORMAL * 5 // Formally 21. Odd numbers are bad.
|
|
use_to_pickup = 1 // for picking up broken bulbs, not that most people will try
|
|
|
|
/obj/item/weapon/storage/box/freezer/Entered(var/atom/movable/AM)
|
|
if(istype(AM, /obj/item/organ))
|
|
var/obj/item/organ/O = AM
|
|
O.preserved = 1
|
|
for(var/obj/item/organ/organ in O)
|
|
organ.preserved = 1
|
|
..()
|
|
|
|
/obj/item/weapon/storage/box/freezer/Exited(var/atom/movable/AM)
|
|
if(istype(AM, /obj/item/organ))
|
|
var/obj/item/organ/O = AM
|
|
O.preserved = 0
|
|
for(var/obj/item/organ/organ in O)
|
|
organ.preserved = 0
|
|
..()
|
|
|
|
/obj/item/weapon/storage/box/ambrosia
|
|
name = "ambrosia seeds box"
|
|
desc = "Contains the seeds you need to get a little high."
|
|
starts_with = list(/obj/item/seeds/ambrosiavulgarisseed = 7)
|
|
|
|
/obj/item/weapon/storage/box/ambrosiadeus
|
|
name = "ambrosia deus seeds box"
|
|
desc = "Contains the seeds you need to get a proper healthy high."
|
|
starts_with = list(/obj/item/seeds/ambrosiadeusseed = 7)
|