mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-01-30 02:45:11 +00:00
552 lines
19 KiB
Plaintext
552 lines
19 KiB
Plaintext
|
|
/* First aid storage
|
|
* Contains:
|
|
* First Aid Kits
|
|
* Pill Bottles
|
|
* Dice Pack (in a pill bottle)
|
|
*/
|
|
|
|
/*
|
|
* First Aid Kits
|
|
*/
|
|
/obj/item/storage/firstaid
|
|
name = "first-aid kit"
|
|
desc = "It's an emergency medical kit for those serious boo-boos."
|
|
icon_state = "firstaid"
|
|
lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi'
|
|
throw_speed = 3
|
|
throw_range = 7
|
|
var/empty = FALSE
|
|
var/list/possible_icons = list("firstaid","firstaid2","firstaid3","firstaid4")
|
|
|
|
/obj/item/storage/firstaid/Initialize(mapload)
|
|
. = ..()
|
|
if(LAZYLEN(possible_icons))
|
|
icon_state = pick(possible_icons)
|
|
|
|
/obj/item/storage/firstaid/regular
|
|
icon_state = "firstaid"
|
|
desc = "A first aid kit with the ability to heal common types of injuries."
|
|
|
|
/obj/item/storage/firstaid/regular/suicide_act(mob/living/carbon/user)
|
|
user.visible_message("<span class='suicide'>[user] begins giving [user.p_them()]self aids with \the [src]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
|
return BRUTELOSS
|
|
|
|
/obj/item/storage/firstaid/regular/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/stack/medical/gauze(src)
|
|
new /obj/item/stack/medical/bruise_pack(src)
|
|
new /obj/item/stack/medical/bruise_pack(src)
|
|
new /obj/item/stack/medical/ointment(src)
|
|
new /obj/item/stack/medical/ointment(src)
|
|
new /obj/item/reagent_containers/hypospray/medipen(src)
|
|
new /obj/item/healthanalyzer(src)
|
|
|
|
/obj/item/storage/firstaid/ancient
|
|
icon_state = "firstaid"
|
|
desc = "A first aid kit with the ability to heal common types of injuries."
|
|
|
|
/obj/item/storage/firstaid/ancient/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/stack/medical/gauze(src)
|
|
new /obj/item/stack/medical/bruise_pack(src)
|
|
new /obj/item/stack/medical/bruise_pack(src)
|
|
new /obj/item/stack/medical/bruise_pack(src)
|
|
new /obj/item/stack/medical/ointment(src)
|
|
new /obj/item/stack/medical/ointment(src)
|
|
new /obj/item/stack/medical/ointment(src)
|
|
|
|
/obj/item/storage/firstaid/fire
|
|
name = "burn treatment kit"
|
|
desc = "A specialized medical kit for when the toxins lab <i>-spontaneously-</i> burns down."
|
|
icon_state = "burn"
|
|
item_state = "firstaid-ointment"
|
|
possible_icons = list("burn","burn2","burn3","burn4")
|
|
|
|
/obj/item/storage/firstaid/fire/suicide_act(mob/living/carbon/user)
|
|
user.visible_message("<span class='suicide'>[user] begins rubbing \the [src] against [user.p_them()]self! It looks like [user.p_theyre()] trying to start a fire!</span>")
|
|
return FIRELOSS
|
|
|
|
/obj/item/storage/firstaid/fire/PopulateContents()
|
|
if(empty)
|
|
return
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/reagent_containers/pill/patch/silver_sulf(src)
|
|
new /obj/item/reagent_containers/pill/oxandrolone(src)
|
|
new /obj/item/reagent_containers/pill/oxandrolone(src)
|
|
new /obj/item/reagent_containers/hypospray/medipen(src)
|
|
new /obj/item/healthanalyzer(src)
|
|
|
|
/obj/item/storage/firstaid/toxin
|
|
name = "toxin treatment kit"
|
|
desc = "Used to treat toxic blood content and radiation poisoning."
|
|
icon_state = "toxin"
|
|
item_state = "firstaid-toxin"
|
|
possible_icons = list("toxin","toxin2","toxin3","toxin4")
|
|
|
|
/obj/item/storage/firstaid/toxin/suicide_act(mob/living/carbon/user)
|
|
user.visible_message("<span class='suicide'>[user] begins licking the lead paint off \the [src]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
|
return TOXLOSS
|
|
|
|
/obj/item/storage/firstaid/toxin/PopulateContents()
|
|
if(empty)
|
|
return
|
|
for(var/i in 1 to 4)
|
|
new /obj/item/reagent_containers/syringe/charcoal(src)
|
|
for(var/i in 1 to 2)
|
|
new /obj/item/storage/pill_bottle/charcoal(src)
|
|
new /obj/item/healthanalyzer(src)
|
|
|
|
/obj/item/storage/firstaid/radbgone
|
|
name = "radiation treatment kit"
|
|
desc = "Used to treat minor toxic blood content and major radiation poisoning."
|
|
icon_state = "rad"
|
|
item_state = "firstaid-toxin"
|
|
possible_icons = list("rad","rad2","rad3")
|
|
|
|
/obj/item/storage/firstaid/radbgone/suicide_act(mob/living/carbon/user)
|
|
user.visible_message("<span class='suicide'>[user] begins licking the lead paint off \the [src]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
|
return TOXLOSS
|
|
|
|
/obj/item/storage/firstaid/radbgone/PopulateContents()
|
|
if(empty)
|
|
return
|
|
if(prob(50))
|
|
new /obj/item/reagent_containers/pill/mutarad(src)
|
|
if(prob(80))
|
|
new /obj/item/reagent_containers/pill/antirad_plus(src)
|
|
new /obj/item/reagent_containers/syringe/charcoal(src)
|
|
new /obj/item/storage/pill_bottle/charcoal(src)
|
|
new /obj/item/reagent_containers/pill/mutadone(src)
|
|
new /obj/item/reagent_containers/pill/antirad(src)
|
|
new /obj/item/reagent_containers/food/drinks/bottle/vodka(src)
|
|
new /obj/item/healthanalyzer(src)
|
|
|
|
|
|
/obj/item/storage/firstaid/o2
|
|
name = "oxygen deprivation treatment kit"
|
|
desc = "A box full of oxygen goodies."
|
|
icon_state = "oxy"
|
|
item_state = "firstaid-o2"
|
|
possible_icons = list("oxy", "oxy2", "oxy3", "oxy4")
|
|
|
|
/obj/item/storage/firstaid/o2/suicide_act(mob/living/carbon/user)
|
|
user.visible_message("<span class='suicide'>[user] begins hitting [user.p_their()] neck with \the [src]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
|
return OXYLOSS
|
|
|
|
/obj/item/storage/firstaid/o2/PopulateContents()
|
|
if(empty)
|
|
return
|
|
for(var/i in 1 to 4)
|
|
new /obj/item/reagent_containers/pill/salbutamol(src)
|
|
new /obj/item/reagent_containers/hypospray/medipen(src)
|
|
new /obj/item/reagent_containers/hypospray/medipen(src)
|
|
new /obj/item/healthanalyzer(src)
|
|
|
|
/obj/item/storage/firstaid/brute
|
|
name = "brute trauma treatment kit"
|
|
desc = "A first aid kit for when you get toolboxed."
|
|
icon_state = "brute"
|
|
item_state = "firstaid-brute"
|
|
possible_icons = list("brute", "brute2", "brute3", "brute4")
|
|
|
|
/obj/item/storage/firstaid/brute/suicide_act(mob/living/carbon/user)
|
|
user.visible_message("<span class='suicide'>[user] begins beating [user.p_them()]self over the head with \the [src]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
|
return BRUTELOSS
|
|
|
|
/obj/item/storage/firstaid/brute/PopulateContents()
|
|
if(empty)
|
|
return
|
|
for(var/i in 1 to 4)
|
|
new /obj/item/reagent_containers/pill/patch/styptic(src)
|
|
new /obj/item/stack/medical/gauze(src)
|
|
new /obj/item/stack/medical/gauze(src)
|
|
new /obj/item/healthanalyzer(src)
|
|
|
|
/obj/item/storage/firstaid/tactical
|
|
name = "combat medical kit"
|
|
desc = "I hope you've got insurance."
|
|
icon_state = "tactical"
|
|
possible_icons = null
|
|
|
|
/obj/item/storage/firstaid/tactical/ComponentInitialize()
|
|
. = ..()
|
|
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
|
STR.max_w_class = WEIGHT_CLASS_NORMAL
|
|
STR.max_combined_w_class = 16
|
|
STR.max_items = 8
|
|
|
|
/obj/item/storage/firstaid/tactical/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/stack/medical/gauze(src)
|
|
new /obj/item/defibrillator/compact/combat/loaded(src)
|
|
new /obj/item/reagent_containers/hypospray/combat/omnizine(src)
|
|
new /obj/item/reagent_containers/medspray/styptic(src)
|
|
new /obj/item/reagent_containers/medspray/silver_sulf(src)
|
|
new /obj/item/healthanalyzer/advanced(src)
|
|
new /obj/item/reagent_containers/syringe/lethal/choral(src) // what the fuck does anyone use this piece of shit for
|
|
new /obj/item/clothing/glasses/hud/health/night(src)
|
|
|
|
/obj/item/storage/firstaid/tactical/nukeop
|
|
name = "improved combat medical kit"
|
|
|
|
/obj/item/storage/firstaid/tactical/nukeop/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/stack/medical/gauze(src)
|
|
new /obj/item/defibrillator/compact/combat/loaded(src)
|
|
new /obj/item/reagent_containers/hypospray/combat(src)
|
|
new /obj/item/reagent_containers/medspray/styptic(src)
|
|
new /obj/item/reagent_containers/medspray/silver_sulf(src)
|
|
new /obj/item/healthanalyzer/advanced(src)
|
|
new /obj/item/reagent_containers/syringe/lethal/choral(src) // what the fuck does anyone use this piece of shit for
|
|
new /obj/item/clothing/glasses/hud/health/night(src)
|
|
|
|
/*
|
|
* Pill Bottles
|
|
*/
|
|
|
|
/obj/item/storage/pill_bottle
|
|
name = "pill bottle"
|
|
desc = "It's an airtight container for storing medication."
|
|
icon_state = "pill_canister"
|
|
icon = 'icons/obj/chemical.dmi'
|
|
item_state = "contsolid"
|
|
lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi'
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
|
|
/obj/item/storage/pill_bottle/ComponentInitialize()
|
|
. = ..()
|
|
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
|
STR.allow_quick_gather = TRUE
|
|
STR.click_gather = TRUE
|
|
STR.can_hold = typecacheof(list(/obj/item/reagent_containers/pill, /obj/item/dice))
|
|
|
|
/obj/item/storage/pill_bottle/suicide_act(mob/user)
|
|
user.visible_message("<span class='suicide'>[user] is trying to get the cap off [src]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
|
return (TOXLOSS)
|
|
|
|
/obj/item/storage/pill_bottle/charcoal
|
|
name = "bottle of charcoal pills"
|
|
desc = "Contains pills used to counter toxins."
|
|
|
|
/obj/item/storage/pill_bottle/charcoal/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/charcoal(src)
|
|
|
|
/obj/item/storage/pill_bottle/antirad
|
|
name = "bottle of charcoal pills"
|
|
desc = "Contains pills used to counter radiation poisoning."
|
|
|
|
/obj/item/storage/pill_bottle/anitrad/PopulateContents()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/reagent_containers/pill/antirad(src)
|
|
|
|
/obj/item/storage/pill_bottle/epinephrine
|
|
name = "bottle of epinephrine pills"
|
|
desc = "Contains pills used to stabilize patients."
|
|
|
|
/obj/item/storage/pill_bottle/epinephrine/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/epinephrine(src)
|
|
|
|
/obj/item/storage/pill_bottle/mutadone
|
|
name = "bottle of mutadone pills"
|
|
desc = "Contains pills used to treat genetic abnormalities."
|
|
|
|
/obj/item/storage/pill_bottle/mutadone/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/mutadone(src)
|
|
|
|
/obj/item/storage/pill_bottle/mannitol
|
|
name = "bottle of mannitol pills"
|
|
desc = "Contains pills used to treat brain damage."
|
|
|
|
/obj/item/storage/pill_bottle/mannitol/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/mannitol(src)
|
|
|
|
/obj/item/storage/pill_bottle/stimulant
|
|
name = "bottle of stimulant pills"
|
|
desc = "Guaranteed to give you that extra burst of energy during a long shift!"
|
|
|
|
/obj/item/storage/pill_bottle/stimulant/PopulateContents()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/reagent_containers/pill/stimulant(src)
|
|
|
|
/obj/item/storage/pill_bottle/mining
|
|
name = "bottle of patches"
|
|
desc = "Contains patches used to treat brute and burn damage."
|
|
|
|
/obj/item/storage/pill_bottle/mining/PopulateContents()
|
|
new /obj/item/reagent_containers/pill/patch/silver_sulf(src)
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/reagent_containers/pill/patch/styptic(src)
|
|
|
|
/obj/item/storage/pill_bottle/zoom
|
|
name = "suspicious pill bottle"
|
|
desc = "The label is pretty old and almost unreadable, you recognize some chemical compounds."
|
|
|
|
/obj/item/storage/pill_bottle/zoom/PopulateContents()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/reagent_containers/pill/zoom(src)
|
|
|
|
/obj/item/storage/pill_bottle/happy
|
|
name = "suspicious pill bottle"
|
|
desc = "There is a smiley on the top."
|
|
|
|
/obj/item/storage/pill_bottle/happy/PopulateContents()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/reagent_containers/pill/happy(src)
|
|
|
|
/obj/item/storage/pill_bottle/lsd
|
|
name = "suspicious pill bottle"
|
|
desc = "There is a badly drawn thing with the shape of a mushroom."
|
|
|
|
/obj/item/storage/pill_bottle/lsd/PopulateContents()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/reagent_containers/pill/lsd(src)
|
|
|
|
/obj/item/storage/pill_bottle/aranesp
|
|
name = "suspicious pill bottle"
|
|
desc = "The label says 'gotta go fast'."
|
|
|
|
/obj/item/storage/pill_bottle/aranesp/PopulateContents()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/reagent_containers/pill/aranesp(src)
|
|
|
|
/obj/item/storage/pill_bottle/psicodine
|
|
name = "bottle of psicodine pills"
|
|
desc = "Contains pills used to treat mental distress and traumas."
|
|
|
|
/obj/item/storage/pill_bottle/psicodine/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/psicodine(src)
|
|
|
|
/obj/item/storage/pill_bottle/happiness
|
|
name = "happiness pill bottle"
|
|
desc = "The label is long gone, in its place an 'H' written with a marker."
|
|
|
|
/obj/item/storage/pill_bottle/happiness/PopulateContents()
|
|
for(var/i in 1 to 5)
|
|
new /obj/item/reagent_containers/pill/happiness(src)
|
|
|
|
/obj/item/storage/pill_bottle/antirad_plus
|
|
name = "anti radiation deluxe pill bottle"
|
|
desc = "The label says 'Med-Co branded pills'."
|
|
|
|
/obj/item/storage/pill_bottle/antirad_plus/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/antirad_plus(src)
|
|
|
|
/obj/item/storage/pill_bottle/mutarad
|
|
name = "radiation treatment deluxe pill bottle"
|
|
desc = "The label says 'Med-Co branded pills' and below that 'Contains Mutadone in each pill!`."
|
|
|
|
/obj/item/storage/pill_bottle/mutarad/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/mutarad(src)
|
|
|
|
/obj/item/storage/pill_bottle/penis_enlargement
|
|
name = "penis enlargement pills"
|
|
desc = "You want penis enlargement pills?"
|
|
|
|
/obj/item/storage/pill_bottle/penis_enlargement/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/penis_enlargement(src)
|
|
|
|
/obj/item/storage/pill_bottle/breast_enlargement
|
|
name = "breast enlargement pills"
|
|
desc = "Made by Fermichem - They have a woman with breasts larger than she is on them. The warming states not to take more than 10u at a time."
|
|
|
|
/obj/item/storage/pill_bottle/breast_enlargement/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/pill/breast_enlargement(src)
|
|
|
|
/////////////
|
|
//Organ Box//
|
|
/////////////
|
|
|
|
/obj/item/storage/belt/organbox
|
|
name = "Organ Storge"
|
|
desc = "A compact box that helps hold massive amounts of implants, organs, and some tools. Has a belt clip for easy carrying"
|
|
w_class = WEIGHT_CLASS_BULKY
|
|
icon = 'icons/obj/mysterybox.dmi'
|
|
icon_state = "organbox_open"
|
|
lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi'
|
|
throw_speed = 1
|
|
throw_range = 1
|
|
|
|
/obj/item/storage/belt/organbox/ComponentInitialize()
|
|
. = ..()
|
|
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
|
STR.max_items = 16
|
|
STR.max_w_class = WEIGHT_CLASS_BULKY
|
|
STR.max_combined_w_class = 20
|
|
STR.can_hold = typecacheof(list(
|
|
/obj/item/storage/pill_bottle,
|
|
/obj/item/reagent_containers/hypospray,
|
|
/obj/item/healthanalyzer,
|
|
/obj/item/reagent_containers/syringe,
|
|
/obj/item/clothing/glasses/hud/health,
|
|
/obj/item/hemostat,
|
|
/obj/item/scalpel,
|
|
/obj/item/retractor,
|
|
/obj/item/cautery,
|
|
/obj/item/surgical_drapes,
|
|
/obj/item/autosurgeon,
|
|
/obj/item/organ,
|
|
/obj/item/implant,
|
|
/obj/item/implantpad,
|
|
/obj/item/implantcase,
|
|
/obj/item/implanter,
|
|
/obj/item/circuitboard/computer/operating,
|
|
/obj/item/stack/sheet/mineral/silver,
|
|
/obj/item/organ_storage
|
|
))
|
|
|
|
//hijacking the minature first aids for hypospray boxes. <3
|
|
/obj/item/storage/hypospraykit
|
|
name = "hypospray kit"
|
|
desc = "It's a kit containing a hypospray and specific treatment chemical-filled vials."
|
|
icon_state = "firstaid-mini"
|
|
lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi'
|
|
throw_speed = 3
|
|
throw_range = 7
|
|
var/empty = FALSE
|
|
item_state = "firstaid"
|
|
|
|
/obj/item/storage/hypospraykit/ComponentInitialize()
|
|
. = ..()
|
|
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
|
STR.max_items = 12
|
|
STR.can_hold = typecacheof(list(
|
|
/obj/item/hypospray/mkii,
|
|
/obj/item/reagent_containers/glass/bottle/vial))
|
|
|
|
/obj/item/storage/hypospraykit/regular
|
|
icon_state = "firstaid-mini"
|
|
desc = "A hypospray kit with general use vials."
|
|
|
|
/obj/item/storage/hypospraykit/regular/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/hypospray/mkii/tricord(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/tricord(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/tricord(src)
|
|
|
|
/obj/item/storage/hypospraykit/fire
|
|
name = "burn treatment hypospray kit"
|
|
desc = "A specialized hypospray kit for burn treatments. Apply with sass."
|
|
icon_state = "burn-mini"
|
|
item_state = "firstaid-ointment"
|
|
|
|
/obj/item/storage/hypospraykit/fire/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/hypospray/mkii/burn(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/kelotane(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/kelotane(src)
|
|
|
|
/obj/item/storage/hypospraykit/toxin
|
|
name = "toxin treatment hypospray kit"
|
|
icon_state = "toxin-mini"
|
|
item_state = "firstaid-toxin"
|
|
|
|
/obj/item/storage/hypospraykit/toxin/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/hypospray/mkii/toxin(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/antitoxin(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/antitoxin(src)
|
|
|
|
/obj/item/storage/hypospraykit/o2
|
|
name = "oxygen deprivation hypospray kit"
|
|
icon_state = "oxy-mini"
|
|
item_state = "firstaid-o2"
|
|
|
|
/obj/item/storage/hypospraykit/o2/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/hypospray/mkii/oxygen(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/dexalin(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/dexalin(src)
|
|
|
|
/obj/item/storage/hypospraykit/enlarge
|
|
name = "organomegaly trauma hypospray kit"
|
|
icon_state = "enlarge-mini"
|
|
item_state = "firstaid-brute"
|
|
|
|
/obj/item/storage/hypospraykit/enlarge/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/hypospray/mkii/enlarge(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/breastreduction(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/breastreduction(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/breastreduction(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/penisreduction(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/penisreduction(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/penisreduction(src)
|
|
|
|
/obj/item/storage/hypospraykit/brute
|
|
name = "brute trauma hypospray kit"
|
|
icon_state = "brute-mini"
|
|
item_state = "firstaid-brute"
|
|
|
|
/obj/item/storage/hypospraykit/brute/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/hypospray/mkii/brute(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/bicaridine(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small/bicaridine(src)
|
|
|
|
/obj/item/storage/hypospraykit/tactical
|
|
name = "combat hypospray kit"
|
|
desc = "A hypospray kit best suited for combat situations."
|
|
icon_state = "tactical-mini"
|
|
|
|
/obj/item/storage/hypospraykit/tactical/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/defibrillator/compact/combat/loaded(src)
|
|
new /obj/item/hypospray/mkii/CMO/combat(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/large/combat(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/large/combat(src)
|
|
|
|
/obj/item/storage/hypospraykit/cmo
|
|
name = "deluxe hypospray kit"
|
|
desc = "A kit containing a Deluxe hypospray and Vials."
|
|
icon_state = "tactical-mini"
|
|
|
|
/obj/item/storage/hypospraykit/cmo/ComponentInitialize()
|
|
. = ..()
|
|
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
|
STR.max_items = 6
|
|
STR.can_hold = typecacheof(list(
|
|
/obj/item/hypospray/mkii,
|
|
/obj/item/reagent_containers/glass/bottle/vial))
|
|
|
|
/obj/item/storage/hypospraykit/cmo/PopulateContents()
|
|
if(empty)
|
|
return
|
|
new /obj/item/hypospray/mkii/CMO(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/large/tricord(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/large/charcoal(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/large/salglu(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/large/dexalin(src)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/large/synthflesh(src)
|
|
|
|
/obj/item/storage/box/vials
|
|
name = "box of hypovials"
|
|
|
|
/obj/item/storage/box/vials/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/glass/bottle/vial/small( src )
|