5f835bfc26
Please refer to #20867 and #20870 for a easier view of the changes. Those two PRs show all meaningful changes (hopefully) and doesn't show the files changed with just 3 lines changed. This PR does three things: It makes all children of /obj/ use the same damage system. Previously to make your new machine/structure be destroyable you needed to give it a var/health, and its own version of many damage related proc such as bullet_act(), take_damage(), attacked_by(), attack_animal(), attack_hulk(), ex_act(), etc... But now, all /obj/ use the same version of those procs at the /obj/ level in code/game/obj_defense.dm. All these obj share the same necessary vars: obj_integrity (health), max_integrity, integrity_failure (optional, below that health level failure happens), and the armor list var which was previously only for items, as well as the resistance_flags bitfield. When you want your new object to be destroyable, you only have to give it a value for those vars and maybe override one proc if you want a special behavior but that's it. This reorganization removes a lot of copypasta (most bullet_act() version for each obj were nearly identical). Two new elements are added to the armor list var: fire and acid armor values. How much damage an obj take depends on the armor value for each damage category. But some objects are INDESTRUCTIBLE and simply never take any damage no matter the type. The armor categories are: -melee(punches, item attacks, xeno/animal/hulk attacks, blob attacks, thrown weapons) -bullet -laser -energy (used by projectiles like ionrifle, taser, and also by EMPs) -bio (unused for this, only here because clothes use them when worn) -rad (same) -bomb (self-explanatory) -fire (for fire damage, not for heat damage though) -acid For machines and structures, when their health reaches zero the object is not just deleted but gets somewhat forcedeconstructed (the proc used is shared with the actual deconstruction system) which can drops things. To not frustrates players most of these objects drop most of the elements necessary to rebuild them (think window dropping shards). Machines drop a machine frame and all components for example (but the frame can then be itself smashed to pieces). For clothes, when they are damaged, they get a "damaged" overlay, which can also be seen when worn, similar to the "bloody" overlay. It refactors acid. See #20537. Some objects are ACID_PROOF and take no damage from acid, while others take varying amounts of damage depending on their acid armor value. Some objects are even UNACIDABLE, no acid effect can even land on them. Acid on objects can be washed off using water. It changes some aspect of damage from fires. All /obj/ can now take fire damage and be flammable, instead of just items. And instead of having just FLAMMABLE objs that become ON_FIRE as soon as some fire touch them (paper), we now have objects that are non flammable but do take damage from fire and become ashes if their health reaches zero (only for items). The damage taken varies depending on the obj's fire armor value and total health. There's also still obj and items that are FIRE_PROOF (although some might still be melted by lava if they're not LAVA_PROOF). When a mob is on fire, its clothes now take fire damage and can turn to ashes. Similarly, when a mob takes melee damages, its clothes gets damaged a bit and can turn to shreds. You can repair clothes with cloth that is produceable by botany's biogenerator. It also does many minor things: Clicking a structure/machine with an item on help intent never results in an attack (so you don't destroy a structure while trying to figure out which tool to use). I moved a lot of objects away from /obj/effect, it should only be used for visual effects, decals and stuff, not for things you can hit and destroy. I tweaked a bit how clothes shredding from bombs work. I made a machine or structure un/anchorable with the wrench, I don't remember which object... Since I changed the meaning of the FIRE_PROOF bitflag to actually mean fire immune, I'm buffing the slime extract that you apply on items to make them fire proof. well now they're really 100% fire proof! animals with environment_smash = 1 no longer one-hit destroy tables and stuff, we give them a decent obj_damage value so they can destroy most obj relatively fast depending on the animal. Probably a million things I forgot. If you want to know how the damage system works all you need is the three obj vars "obj_integrity", "max_integrity", "integrity_failure", as well as the armor list var and the resistance_flags bitfield, and read the file obj_defense.dm
868 lines
29 KiB
Plaintext
868 lines
29 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.
|
|
* Various paper bags.
|
|
*
|
|
* 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"
|
|
resistance_flags = FLAMMABLE
|
|
var/foldable = /obj/item/stack/sheet/cardboard
|
|
|
|
|
|
/obj/item/weapon/storage/box/attack_self(mob/user)
|
|
..()
|
|
|
|
if(!foldable)
|
|
return
|
|
if(contents.len)
|
|
user << "<span class='warning'>You can't fold this box with items still inside!</span>"
|
|
return
|
|
if(!ispath(foldable))
|
|
return
|
|
|
|
//Close any open UI windows first
|
|
close_all()
|
|
|
|
user << "<span class='notice'>You fold [src] flat.</span>"
|
|
var/obj/item/I = new foldable(get_turf(src))
|
|
user.drop_item()
|
|
user.put_in_hands(I)
|
|
user.update_inv_hands()
|
|
qdel(src)
|
|
|
|
/obj/item/weapon/storage/box/attackby(obj/item/W, mob/user, params)
|
|
if(istype(W, /obj/item/stack/packageWrap))
|
|
return 0
|
|
return ..()
|
|
|
|
|
|
// Ordinary survival box
|
|
/obj/item/weapon/storage/box/survival/New()
|
|
..()
|
|
new /obj/item/clothing/mask/breath(src)
|
|
new /obj/item/weapon/tank/internals/emergency_oxygen(src)
|
|
new /obj/item/weapon/reagent_containers/hypospray/medipen(src)
|
|
|
|
/obj/item/weapon/storage/box/survival/radio/New()
|
|
..()
|
|
new /obj/item/device/radio/off(src)
|
|
|
|
/obj/item/weapon/storage/box/survival_mining/New()
|
|
..()
|
|
new /obj/item/clothing/mask/gas/explorer(src)
|
|
new /obj/item/weapon/tank/internals/emergency_oxygen/engi(src)
|
|
new /obj/item/weapon/crowbar/red(src)
|
|
new /obj/item/weapon/reagent_containers/hypospray/medipen(src)
|
|
|
|
|
|
// Engineer survival box
|
|
/obj/item/weapon/storage/box/engineer/New()
|
|
..()
|
|
new /obj/item/clothing/mask/breath(src)
|
|
new /obj/item/weapon/tank/internals/emergency_oxygen/engi(src)
|
|
new /obj/item/weapon/reagent_containers/hypospray/medipen(src)
|
|
|
|
/obj/item/weapon/storage/box/engineer/radio/New()
|
|
..()
|
|
new /obj/item/device/radio/off(src)
|
|
|
|
// Syndie survival box
|
|
/obj/item/weapon/storage/box/syndie/New()
|
|
..()
|
|
new /obj/item/clothing/mask/gas/syndicate(src)
|
|
new /obj/item/weapon/tank/internals/emergency_oxygen/engi(src)
|
|
|
|
// Security survival box
|
|
/obj/item/weapon/storage/box/security/New()
|
|
..()
|
|
new /obj/item/clothing/mask/gas/sechailer(src)
|
|
new /obj/item/weapon/tank/internals/emergency_oxygen(src)
|
|
new /obj/item/weapon/reagent_containers/hypospray/medipen(src)
|
|
|
|
/obj/item/weapon/storage/box/security/radio/New()
|
|
..()
|
|
new /obj/item/device/radio/off(src)
|
|
|
|
/obj/item/weapon/storage/box/gloves
|
|
name = "box of latex gloves"
|
|
desc = "Contains sterile latex gloves."
|
|
icon_state = "latex"
|
|
|
|
/obj/item/weapon/storage/box/gloves/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/clothing/gloves/color/latex(src)
|
|
|
|
/obj/item/weapon/storage/box/masks
|
|
name = "box of sterile masks"
|
|
desc = "This box contains sterile medical masks."
|
|
icon_state = "sterile"
|
|
|
|
/obj/item/weapon/storage/box/masks/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/clothing/mask/surgical(src)
|
|
|
|
/obj/item/weapon/storage/box/syringes
|
|
name = "box of syringes"
|
|
desc = "A box full of syringes."
|
|
desc = "A biohazard alert warning is printed on the box."
|
|
icon_state = "syringe"
|
|
|
|
/obj/item/weapon/storage/box/syringes/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/reagent_containers/syringe( src )
|
|
|
|
/obj/item/weapon/storage/box/medipens
|
|
name = "box of medipens"
|
|
desc = "A box full of epinephrine MediPens."
|
|
icon_state = "syringe"
|
|
|
|
/obj/item/weapon/storage/box/medipens/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/reagent_containers/hypospray/medipen( src )
|
|
|
|
/obj/item/weapon/storage/box/medipens/utility
|
|
name = "stimpack value kit"
|
|
desc = "A box with several stimpack medipens for the economical miner."
|
|
icon_state = "syringe"
|
|
|
|
/obj/item/weapon/storage/box/medipens/utility/New()
|
|
..()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/weapon/reagent_containers/hypospray/medipen/stimpack(src)
|
|
|
|
/obj/item/weapon/storage/box/beakers
|
|
name = "box of beakers"
|
|
icon_state = "beaker"
|
|
|
|
/obj/item/weapon/storage/box/beakers/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/reagent_containers/glass/beaker( src )
|
|
|
|
/obj/item/weapon/storage/box/injectors
|
|
name = "box of DNA injectors"
|
|
desc = "This box contains injectors, it seems."
|
|
|
|
/obj/item/weapon/storage/box/injectors/New()
|
|
..()
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/weapon/dnainjector/h2m(src)
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/weapon/dnainjector/m2h(src)
|
|
|
|
/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"
|
|
|
|
/obj/item/weapon/storage/box/flashbangs/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/grenade/flashbang(src)
|
|
|
|
/obj/item/weapon/storage/box/flashes
|
|
name = "box of flashbulbs"
|
|
desc = "<B>WARNING: Flashes can cause serious eye damage, protective eyewear is required.</B>"
|
|
icon_state = "flashbang"
|
|
|
|
/obj/item/weapon/storage/box/flashes/New()
|
|
..()
|
|
for(var/i in 1 to 6)
|
|
new /obj/item/device/assembly/flash/handheld(src)
|
|
|
|
/obj/item/weapon/storage/box/wall_flash
|
|
name = "wall-mounted flash kit"
|
|
desc = "This box contains everything necessary to build a wall-mounted flash. <B>WARNING: Flashes can cause serious eye damage, protective eyewear is required.</B>"
|
|
icon_state = "flashbang"
|
|
|
|
/obj/item/weapon/storage/box/wall_flash/New()
|
|
..()
|
|
var/id = rand(1000, 9999)
|
|
|
|
new /obj/item/wallframe/button(src)
|
|
new /obj/item/weapon/electronics/airlock(src)
|
|
var/obj/item/device/assembly/control/flasher/remote = new(src)
|
|
remote.id = id
|
|
var/obj/item/wallframe/flasher/frame = new(src)
|
|
frame.id = id
|
|
new /obj/item/device/assembly/flash/handheld(src)
|
|
new /obj/item/weapon/screwdriver(src)
|
|
|
|
|
|
/obj/item/weapon/storage/box/teargas
|
|
name = "box of tear gas grenades (WARNING)"
|
|
desc = "<B>WARNING: These devices are extremely dangerous and can cause blindness and skin irritation.</B>"
|
|
icon_state = "flashbang"
|
|
|
|
/obj/item/weapon/storage/box/teargas/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/grenade/chem_grenade/teargas(src)
|
|
|
|
/obj/item/weapon/storage/box/emps
|
|
name = "box of emp grenades"
|
|
desc = "A box with 5 emp grenades."
|
|
icon_state = "flashbang"
|
|
|
|
/obj/item/weapon/storage/box/emps/New()
|
|
..()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/weapon/grenade/empgrenade(src)
|
|
|
|
/obj/item/weapon/storage/box/trackimp
|
|
name = "boxed tracking implant kit"
|
|
desc = "Box full of scum-bag tracking utensils."
|
|
icon_state = "implant"
|
|
|
|
/obj/item/weapon/storage/box/trackimp/New()
|
|
..()
|
|
for(var/i in 1 to 4)
|
|
new /obj/item/weapon/implantcase/tracking(src)
|
|
new /obj/item/weapon/implanter(src)
|
|
new /obj/item/weapon/implantpad(src)
|
|
new /obj/item/weapon/locator(src)
|
|
|
|
/obj/item/weapon/storage/box/minertracker
|
|
name = "boxed tracking implant kit"
|
|
desc = "For finding those who have died on the accursed lavaworld."
|
|
icon_state = "implant"
|
|
|
|
/obj/item/weapon/storage/box/minertracker/New()
|
|
..()
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/weapon/implantcase/tracking(src)
|
|
new /obj/item/weapon/implanter(src)
|
|
new /obj/item/weapon/implantpad(src)
|
|
new /obj/item/weapon/locator(src)
|
|
|
|
/obj/item/weapon/storage/box/chemimp
|
|
name = "boxed chemical implant kit"
|
|
desc = "Box of stuff used to implant chemicals."
|
|
icon_state = "implant"
|
|
|
|
/obj/item/weapon/storage/box/chemimp/New()
|
|
..()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/weapon/implantcase/chem(src)
|
|
new /obj/item/weapon/implanter(src)
|
|
new /obj/item/weapon/implantpad(src)
|
|
|
|
/obj/item/weapon/storage/box/exileimp
|
|
name = "boxed exile implant kit"
|
|
desc = "Box of exile implants. It has a picture of a clown being booted through the Gateway."
|
|
icon_state = "implant"
|
|
|
|
/obj/item/weapon/storage/box/exileimp/New()
|
|
..()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/weapon/implantcase/exile(src)
|
|
new /obj/item/weapon/implanter(src)
|
|
|
|
/obj/item/weapon/storage/box/rxglasses
|
|
name = "box of prescription glasses"
|
|
desc = "This box contains nerd glasses."
|
|
icon_state = "glasses"
|
|
|
|
/obj/item/weapon/storage/box/rxglasses/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/clothing/glasses/regular(src)
|
|
|
|
/obj/item/weapon/storage/box/drinkingglasses
|
|
name = "box of drinking glasses"
|
|
desc = "It has a picture of drinking glasses on it."
|
|
|
|
/obj/item/weapon/storage/box/drinkingglasses/New()
|
|
..()
|
|
for(var/i in 1 to 6)
|
|
new /obj/item/weapon/reagent_containers/food/drinks/drinkingglass(src)
|
|
|
|
/obj/item/weapon/storage/box/condimentbottles
|
|
name = "box of condiment bottles"
|
|
desc = "It has a large ketchup smear on it."
|
|
|
|
/obj/item/weapon/storage/box/condimentbottles/New()
|
|
..()
|
|
for(var/i in 1 to 6)
|
|
new /obj/item/weapon/reagent_containers/food/condiment(src)
|
|
|
|
/obj/item/weapon/storage/box/cups
|
|
name = "box of paper cups"
|
|
desc = "It has pictures of paper cups on the front."
|
|
|
|
/obj/item/weapon/storage/box/cups/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/reagent_containers/food/drinks/sillycup( src )
|
|
|
|
/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"
|
|
|
|
/obj/item/weapon/storage/box/donkpockets/New()
|
|
..()
|
|
for(var/i in 1 to 6)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/donkpocket(src)
|
|
|
|
/obj/item/weapon/storage/box/monkeycubes
|
|
name = "monkey cube box"
|
|
desc = "Drymate brand monkey cubes. Just add water!"
|
|
icon = 'icons/obj/food/food.dmi'
|
|
icon_state = "monkeycubebox"
|
|
storage_slots = 7
|
|
can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/monkeycube)
|
|
|
|
/obj/item/weapon/storage/box/monkeycubes/New()
|
|
..()
|
|
for(var/i = 1; i <= 5; i++)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/monkeycube(src)
|
|
|
|
/obj/item/weapon/storage/box/ids
|
|
name = "box of spare IDs"
|
|
desc = "Has so many empty IDs."
|
|
icon_state = "id"
|
|
|
|
/obj/item/weapon/storage/box/ids/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/card/id(src)
|
|
|
|
/obj/item/weapon/storage/box/silver_ids
|
|
name = "box of spare silver IDs"
|
|
desc = "Shiny IDs for important people."
|
|
icon_state = "id"
|
|
|
|
/obj/item/weapon/storage/box/silver_ids/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/card/id/silver(src)
|
|
|
|
/obj/item/weapon/storage/box/prisoner
|
|
name = "box of prisoner IDs"
|
|
desc = "Take away their last shred of dignity, their name."
|
|
icon_state = "id"
|
|
|
|
/obj/item/weapon/storage/box/prisoner/New()
|
|
..()
|
|
new /obj/item/weapon/card/id/prisoner/one(src)
|
|
new /obj/item/weapon/card/id/prisoner/two(src)
|
|
new /obj/item/weapon/card/id/prisoner/three(src)
|
|
new /obj/item/weapon/card/id/prisoner/four(src)
|
|
new /obj/item/weapon/card/id/prisoner/five(src)
|
|
new /obj/item/weapon/card/id/prisoner/six(src)
|
|
new /obj/item/weapon/card/id/prisoner/seven(src)
|
|
|
|
/obj/item/weapon/storage/box/seccarts
|
|
name = "box of PDA security cartridges"
|
|
desc = "A box full of PDA cartridges used by Security."
|
|
icon_state = "pda"
|
|
|
|
/obj/item/weapon/storage/box/seccarts/New()
|
|
..()
|
|
new /obj/item/weapon/cartridge/detective(src)
|
|
for(var/i in 1 to 6)
|
|
new /obj/item/weapon/cartridge/security(src)
|
|
|
|
/obj/item/weapon/storage/box/firingpins
|
|
name = "box of standard firing pins"
|
|
desc = "A box full of standard firing pins, to allow newly-developed firearms to operate."
|
|
icon_state = "id"
|
|
|
|
/obj/item/weapon/storage/box/firingpins/New()
|
|
..()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/device/firing_pin(src)
|
|
|
|
/obj/item/weapon/storage/box/lasertagpins
|
|
name = "box of laser tag firing pins"
|
|
desc = "A box full of laser tag firing pins, to allow newly-developed firearms to require wearing brightly coloured plastic armor before being able to be used."
|
|
icon_state = "id"
|
|
|
|
/obj/item/weapon/storage/box/lasertagpins/New()
|
|
..()
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/device/firing_pin/tag/red(src)
|
|
new /obj/item/device/firing_pin/tag/blue(src)
|
|
|
|
/obj/item/weapon/storage/box/handcuffs
|
|
name = "box of spare handcuffs"
|
|
desc = "A box full of handcuffs."
|
|
icon_state = "handcuff"
|
|
|
|
/obj/item/weapon/storage/box/handcuffs/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/restraints/handcuffs(src)
|
|
|
|
/obj/item/weapon/storage/box/zipties
|
|
name = "box of spare zipties"
|
|
desc = "A box full of zipties."
|
|
icon_state = "handcuff"
|
|
|
|
/obj/item/weapon/storage/box/zipties/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/restraints/handcuffs/cable/zipties(src)
|
|
|
|
/obj/item/weapon/storage/box/alienhandcuffs
|
|
name = "box of spare handcuffs"
|
|
desc = "A box full of handcuffs."
|
|
icon_state = "alienboxCuffs"
|
|
|
|
/obj/item/weapon/storage/box/alienhandcuffs/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/restraints/handcuffs/alien(src)
|
|
|
|
/obj/item/weapon/storage/box/fakesyndiesuit
|
|
name = "boxed space suit and helmet"
|
|
desc = "A sleek, sturdy box used to hold replica spacesuits."
|
|
icon_state = "box_of_doom"
|
|
|
|
/obj/item/weapon/storage/box/fakesyndiesuit/New()
|
|
..()
|
|
new /obj/item/clothing/head/syndicatefake(src)
|
|
new /obj/item/clothing/suit/syndicatefake(src)
|
|
|
|
/obj/item/weapon/storage/box/mousetraps
|
|
name = "box of Pest-B-Gon mousetraps"
|
|
desc = "<span class='alert'>Keep out of reach of children.</span>"
|
|
icon_state = "mousetraps"
|
|
|
|
/obj/item/weapon/storage/box/mousetraps/New()
|
|
..()
|
|
for(var/i in 1 to 6)
|
|
new /obj/item/device/assembly/mousetrap( src )
|
|
|
|
/obj/item/weapon/storage/box/pillbottles
|
|
name = "box of pill bottles"
|
|
desc = "It has pictures of pill bottles on its front."
|
|
icon_state = "pillbox"
|
|
|
|
/obj/item/weapon/storage/box/pillbottles/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/storage/pill_bottle( src )
|
|
|
|
/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"
|
|
storage_slots = 8
|
|
can_hold = list(/obj/item/toy/snappop)
|
|
|
|
/obj/item/weapon/storage/box/snappops/New()
|
|
..()
|
|
for(var/i=1; i <= storage_slots; i++)
|
|
new /obj/item/toy/snappop(src)
|
|
|
|
/obj/item/weapon/storage/box/matches
|
|
name = "matchbox"
|
|
desc = "A small box of Almost But Not Quite Plasma Premium Matches."
|
|
icon = 'icons/obj/cigarettes.dmi'
|
|
icon_state = "matchbox"
|
|
item_state = "zippo"
|
|
storage_slots = 10
|
|
w_class = 1
|
|
slot_flags = SLOT_BELT
|
|
can_hold = list(/obj/item/weapon/match)
|
|
|
|
/obj/item/weapon/storage/box/matches/New()
|
|
..()
|
|
for(var/i=1; i <= storage_slots; i++)
|
|
new /obj/item/weapon/match(src)
|
|
|
|
/obj/item/weapon/storage/box/matches/attackby(obj/item/weapon/match/W as obj, mob/user as mob, params)
|
|
if(istype(W, /obj/item/weapon/match))
|
|
W.matchignite()
|
|
|
|
/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 = "syringe_kit"
|
|
foldable = /obj/item/stack/sheet/cardboard //BubbleWrap
|
|
storage_slots=21
|
|
can_hold = list(/obj/item/weapon/light/tube, /obj/item/weapon/light/bulb)
|
|
max_combined_w_class = 21
|
|
use_to_pickup = 1 // for picking up broken bulbs, not that most people will try
|
|
|
|
/obj/item/weapon/storage/box/lights/bulbs/New()
|
|
..()
|
|
for(var/i = 0; i < 21; i++)
|
|
new /obj/item/weapon/light/bulb(src)
|
|
|
|
/obj/item/weapon/storage/box/lights/tubes
|
|
name = "box of replacement tubes"
|
|
icon_state = "lighttube"
|
|
|
|
/obj/item/weapon/storage/box/lights/tubes/New()
|
|
..()
|
|
for(var/i = 0; i < 21; i++)
|
|
new /obj/item/weapon/light/tube(src)
|
|
|
|
/obj/item/weapon/storage/box/lights/mixed
|
|
name = "box of replacement lights"
|
|
icon_state = "lightmixed"
|
|
|
|
/obj/item/weapon/storage/box/lights/mixed/New()
|
|
..()
|
|
for(var/i = 0; i < 14; i++)
|
|
new /obj/item/weapon/light/tube(src)
|
|
for(var/i = 0; i < 7; i++)
|
|
new /obj/item/weapon/light/bulb(src)
|
|
|
|
|
|
/obj/item/weapon/storage/box/deputy
|
|
name = "box of deputy armbands"
|
|
desc = "To be issued to those authorized to act as deputy of security."
|
|
|
|
/obj/item/weapon/storage/box/deputy/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/clothing/tie/armband/deputy(src)
|
|
|
|
/obj/item/weapon/storage/box/metalfoam
|
|
name = "box of metal foam grenades"
|
|
desc = "To be used to rapidly seal hull breaches."
|
|
icon_state = "flashbang"
|
|
|
|
/obj/item/weapon/storage/box/metalfoam/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/weapon/grenade/chem_grenade/metalfoam(src)
|
|
|
|
/obj/item/weapon/storage/box/hug
|
|
name = "box of hugs"
|
|
desc = "A special box for sensitive people."
|
|
icon_state = "hugbox"
|
|
foldable = null
|
|
|
|
/obj/item/weapon/storage/box/hug/suicide_act(mob/user)
|
|
user.visible_message("<span class='suicide'>[user] clamps the box of hugs on \his jugular! Guess it wasn't such a hugbox after all..</span>")
|
|
return (BRUTELOSS)
|
|
|
|
/obj/item/weapon/storage/box/hug/attack_self(mob/user)
|
|
..()
|
|
user.changeNext_move(CLICK_CD_MELEE)
|
|
playsound(loc, "rustle", 50, 1, -5)
|
|
user.visible_message("<span class='notice'>[user] hugs \the [src].</span>","<span class='notice'>You hug \the [src].</span>")
|
|
return
|
|
|
|
/obj/item/weapon/storage/box/hug/medical/New()
|
|
..()
|
|
new /obj/item/stack/medical/bruise_pack(src)
|
|
new /obj/item/stack/medical/ointment(src)
|
|
new /obj/item/weapon/reagent_containers/hypospray/medipen(src)
|
|
|
|
/obj/item/ammo_casing/shotgun/rubbershot
|
|
|
|
/obj/item/weapon/storage/box/rubbershot
|
|
name = "box of rubber shots"
|
|
desc = "A box full of rubber shots, designed for riot shotguns."
|
|
icon_state = "rubbershot_box"
|
|
|
|
/obj/item/weapon/storage/box/rubbershot/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/ammo_casing/shotgun/rubbershot(src)
|
|
|
|
/obj/item/weapon/storage/box/lethalshot
|
|
name = "box of lethal shotgun shots"
|
|
desc = "A box full of lethal shots, designed for riot shotguns."
|
|
icon_state = "lethalshot_box"
|
|
|
|
/obj/item/weapon/storage/box/lethalshot/New()
|
|
..()
|
|
new /obj/item/ammo_casing/shotgun/buckshot(src)
|
|
new /obj/item/ammo_casing/shotgun/buckshot(src)
|
|
new /obj/item/ammo_casing/shotgun/buckshot(src)
|
|
new /obj/item/ammo_casing/shotgun/buckshot(src)
|
|
new /obj/item/ammo_casing/shotgun/buckshot(src)
|
|
new /obj/item/ammo_casing/shotgun/buckshot(src)
|
|
new /obj/item/ammo_casing/shotgun/buckshot(src)
|
|
|
|
/obj/item/weapon/storage/box/beanbag
|
|
name = "box of beanbags"
|
|
desc = "A box full of beanbag shells."
|
|
icon_state = "rubbershot_box"
|
|
|
|
/obj/item/weapon/storage/box/beanbag/New()
|
|
..()
|
|
new /obj/item/ammo_casing/shotgun/beanbag(src)
|
|
new /obj/item/ammo_casing/shotgun/beanbag(src)
|
|
new /obj/item/ammo_casing/shotgun/beanbag(src)
|
|
new /obj/item/ammo_casing/shotgun/beanbag(src)
|
|
new /obj/item/ammo_casing/shotgun/beanbag(src)
|
|
new /obj/item/ammo_casing/shotgun/beanbag(src)
|
|
|
|
#define NODESIGN "None"
|
|
#define NANOTRASEN "NanotrasenStandard"
|
|
#define SYNDI "SyndiSnacks"
|
|
#define HEART "Heart"
|
|
#define SMILE "SmileyFace"
|
|
|
|
/obj/item/weapon/storage/box/papersack
|
|
name = "paper sack"
|
|
desc = "A sack neatly crafted out of paper."
|
|
icon_state = "paperbag_None"
|
|
item_state = "paperbag_None"
|
|
resistance_flags = FLAMMABLE
|
|
foldable = null
|
|
var/design = NODESIGN
|
|
|
|
/obj/item/weapon/storage/box/papersack/update_icon()
|
|
if(contents.len == 0)
|
|
icon_state = "[item_state]"
|
|
else icon_state = "[item_state]_closed"
|
|
|
|
/obj/item/weapon/storage/box/papersack/attackby(obj/item/weapon/W, mob/user, params)
|
|
if(istype(W, /obj/item/weapon/pen))
|
|
//if a pen is used on the sack, dialogue to change its design appears
|
|
if(contents.len)
|
|
user << "<span class='warning'>You can't modify this [src] with items still inside!</span>"
|
|
return
|
|
var/list/designs = list(NODESIGN, NANOTRASEN, SYNDI, HEART, SMILE, "Cancel")
|
|
var/switchDesign = input("Select a Design:", "Paper Sack Design", designs[1]) in designs
|
|
if(get_dist(usr, src) > 1)
|
|
usr << "<span class='warning'>You have moved too far away!</span>"
|
|
return
|
|
var/choice = designs.Find(switchDesign)
|
|
if(design == designs[choice] || designs[choice] == "Cancel")
|
|
return 0
|
|
usr << "<span class='notice'>You make some modifications to the [src] using your pen.</span>"
|
|
design = designs[choice]
|
|
icon_state = "paperbag_[design]"
|
|
item_state = "paperbag_[design]"
|
|
switch(designs[choice])
|
|
if(NODESIGN)
|
|
desc = "A sack neatly crafted out of paper."
|
|
if(NANOTRASEN)
|
|
desc = "A standard Nanotrasen paper lunch sack for loyal employees on the go."
|
|
if(SYNDI)
|
|
desc = "The design on this paper sack is a remnant of the notorious 'SyndieSnacks' program."
|
|
if(HEART)
|
|
desc = "A paper sack with a heart etched onto the side."
|
|
if(SMILE)
|
|
desc = "A paper sack with a crude smile etched onto the side."
|
|
return 0
|
|
else if(W.is_sharp())
|
|
if(!contents.len)
|
|
if(item_state == "paperbag_None")
|
|
user.show_message("<span class='notice'>You cut eyeholes into the [src].</span>", 1)
|
|
new /obj/item/clothing/head/papersack(user.loc)
|
|
qdel(src)
|
|
return 0
|
|
else if(item_state == "paperbag_SmileyFace")
|
|
user.show_message("<span class='notice'>You cut eyeholes into the [src] and modify the design.</span>", 1)
|
|
new /obj/item/clothing/head/papersack/smiley(user.loc)
|
|
qdel(src)
|
|
return 0
|
|
return ..()
|
|
|
|
#undef NODESIGN
|
|
#undef NANOTRASEN
|
|
#undef SYNDI
|
|
#undef HEART
|
|
#undef SMILE
|
|
|
|
/obj/item/weapon/storage/box/ingredients //This box is for the randomely chosen version the chef spawns with, it shouldn't actually exist.
|
|
name = "ingredients box"
|
|
icon_state = "donk_kit"
|
|
item_state = null
|
|
|
|
/obj/item/weapon/storage/box/ingredients/wildcard
|
|
item_state = "wildcard"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/wildcard/New()
|
|
..()
|
|
for(var/i in 1 to 7)
|
|
var/randomFood = pick(/obj/item/weapon/reagent_containers/food/snacks/grown/chili,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/potato/sweet,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
|
|
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/cherries,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/soybeans,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/corn,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/plumphelmet,
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/chanterelle)
|
|
new randomFood(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/fiesta
|
|
item_state = "fiesta"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/fiesta/New()
|
|
..()
|
|
new /obj/item/weapon/reagent_containers/food/snacks/tortilla(src)
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/corn(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/soybeans(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/chili(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/italian
|
|
item_state = "italian"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/italian/New()
|
|
..()
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/tomato(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/faggot(src)
|
|
new /obj/item/weapon/reagent_containers/food/drinks/bottle/wine(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/vegetarian
|
|
item_state = "vegetarian"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/vegetarian/New()
|
|
..()
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/carrot(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/eggplant(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/potato(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/apple(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/corn(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/tomato(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/american
|
|
item_state = "american"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/american/New()
|
|
..()
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/potato(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/tomato(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/corn(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/faggot(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/fruity
|
|
item_state = "fruity"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/fruity/New()
|
|
..()
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/apple(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/citrus/lemon(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/citrus/lime(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/watermelon(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/sweets
|
|
item_state = "sweets"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/sweets/New()
|
|
..()
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/cherries(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/banana(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/chocolatebar(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/apple(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/delights
|
|
item_state = "delights"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/delights/New()
|
|
..()
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/potato/sweet(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/bluecherries(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/vanillapod(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/berries(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/grains
|
|
item_state = "grains"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/grains/New()
|
|
..()
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/oat(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/wheat(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod(src)
|
|
new /obj/item/weapon/reagent_containers/honeycomb(src)
|
|
new /obj/item/seeds/poppy(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/carnivore
|
|
item_state = "carnivore"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/carnivore/New()
|
|
..()
|
|
new /obj/item/weapon/reagent_containers/food/snacks/meat/slab/bear(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/meat/slab/spider(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/spidereggs(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/carpmeat(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/meat/slab/xeno(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/meat/slab/corgi(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/faggot(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/exotic
|
|
item_state = "exotic"
|
|
|
|
/obj/item/weapon/storage/box/ingredients/exotic/New()
|
|
..()
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/carpmeat(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/soybeans(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/cabbage(src)
|
|
new /obj/item/weapon/reagent_containers/food/snacks/grown/chili(src)
|
|
|
|
/obj/item/weapon/storage/box/ingredients/New()
|
|
..()
|
|
if(item_state)
|
|
desc = "A box containing supplementary ingredients for the aspiring chef. This box's theme is '[item_state]'."
|
|
|
|
/obj/item/weapon/storage/box/emptysandbags
|
|
name = "box of empty sandbags"
|
|
|
|
/obj/item/weapon/storage/box/emptysandbags/New()
|
|
..()
|
|
new /obj/item/weapon/emptysandbag(src)
|
|
new /obj/item/weapon/emptysandbag(src)
|
|
new /obj/item/weapon/emptysandbag(src)
|
|
new /obj/item/weapon/emptysandbag(src)
|
|
new /obj/item/weapon/emptysandbag(src)
|
|
new /obj/item/weapon/emptysandbag(src)
|
|
new /obj/item/weapon/emptysandbag(src)
|
|
|
|
/obj/item/weapon/storage/box/rndboards
|
|
name = "\proper the liberator's legacy"
|
|
desc = "A box containing a gift for worthy golems."
|
|
|
|
/obj/item/weapon/storage/box/rndboards/New()
|
|
..()
|
|
new /obj/item/weapon/circuitboard/machine/protolathe(src)
|
|
new /obj/item/weapon/circuitboard/machine/destructive_analyzer(src)
|
|
new /obj/item/weapon/circuitboard/machine/circuit_imprinter(src)
|
|
new /obj/item/weapon/circuitboard/computer/rdconsole(src)
|