medicine.dm

This commit is contained in:
Kashargul
2024-12-07 02:10:10 +01:00
parent a12a4d2d5e
commit 1d8d5b34b5
94 changed files with 881 additions and 789 deletions
+24 -24
View File
@@ -448,7 +448,7 @@
/obj/item/reagent_containers/food/snacks/aesirsalad/Initialize()
. = ..()
reagents.add_reagent("doctorsdelight", 8)
reagents.add_reagent("tricordrazine", 8)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 8)
/obj/item/reagent_containers/food/snacks/candy/donor
name = "Donor Candy"
@@ -807,7 +807,7 @@
if(9)
reagents.add_reagent("berryjuice", 3)
if(10)
reagents.add_reagent("tricordrazine", 3)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 3)
/obj/item/reagent_containers/food/snacks/donut/plain/jelly/poisonberry
filling_color = "#ED1169"
@@ -1077,7 +1077,7 @@
/obj/item/reagent_containers/food/snacks/bearmeat/Initialize()
. = ..()
reagents.add_reagent("protein", 12)
reagents.add_reagent("hyperzine", 5)
reagents.add_reagent(REAGENT_ID_HYPERZINE, 5)
/obj/item/reagent_containers/food/snacks/xenomeat
name = "xenomeat"
@@ -1139,7 +1139,7 @@
nutriment_amt = 2
nutriment_desc = list("heartiness" = 1, "dough" = 2)
var/warm = FALSE
var/list/heated_reagents = list("tricordrazine" = 5)
var/list/heated_reagents = list(REAGENT_ID_TRICORDRAZINE = 5)
/obj/item/reagent_containers/food/snacks/donkpocket/Initialize()
. = ..()
@@ -1218,7 +1218,7 @@
name = "\improper Sin-pocket"
desc = "The food of choice for the veteran. Do <B>NOT</B> overconsume."
filling_color = "#6D6D00"
heated_reagents = list("doctorsdelight" = 5, "hyperzine" = 0.75, "synaptizine" = 0.25)
heated_reagents = list("doctorsdelight" = 5, REAGENT_ID_HYPERZINE = 0.75, REAGENT_ID_SYNAPTIZINE = 0.25)
var/has_been_heated = 0
/obj/item/reagent_containers/food/snacks/donkpocket/sinpocket/attack_self(mob/user)
@@ -1244,7 +1244,7 @@
/obj/item/reagent_containers/food/snacks/brainburger/Initialize()
. = ..()
reagents.add_reagent("protein", 6)
reagents.add_reagent("alkysine", 6)
reagents.add_reagent(REAGENT_ID_ALKYSINE, 6)
/obj/item/reagent_containers/food/snacks/ghostburger
name = "Ghost Burger"
@@ -1536,7 +1536,7 @@
name = "exceptional plump pie"
desc = "Microwave is taken by a fey mood! It has cooked an exceptional plump pie!"
reagents.add_reagent(REAGENT_ID_NUTRIMENT, 8, nutriment_desc)
reagents.add_reagent("tricordrazine", 5)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 5)
/obj/item/reagent_containers/food/snacks/xemeatpie
name = "Xeno-pie"
@@ -1706,7 +1706,7 @@
/obj/item/reagent_containers/food/snacks/carrotfries/Initialize()
. = ..()
reagents.add_reagent("imidazoline", 3)
reagents.add_reagent(REAGENT_ID_IMIDAZOLINE, 3)
/obj/item/reagent_containers/food/snacks/cheesyfries
@@ -2507,7 +2507,7 @@
/obj/item/reagent_containers/food/snacks/nettlesoup/Initialize()
. = ..()
reagents.add_reagent(REAGENT_ID_WATER, 5)
reagents.add_reagent("tricordrazine", 5)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 5)
/obj/item/reagent_containers/food/snacks/mysterysoup
name = "Mystery soup"
@@ -2536,7 +2536,7 @@
if(3)
reagents.add_reagent(REAGENT_ID_NUTRIMENT, 5, nutriment_desc)
reagents.add_reagent(REAGENT_ID_WATER, 5)
reagents.add_reagent("tricordrazine", 5)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 5)
if(4)
reagents.add_reagent(REAGENT_ID_NUTRIMENT, 5, nutriment_desc)
reagents.add_reagent(REAGENT_ID_WATER, 10)
@@ -2558,7 +2558,7 @@
if(10)
reagents.add_reagent(REAGENT_ID_NUTRIMENT, 6, nutriment_desc)
reagents.add_reagent("tomatojuice", 5)
reagents.add_reagent("imidazoline", 5)
reagents.add_reagent(REAGENT_ID_IMIDAZOLINE, 5)
/obj/item/reagent_containers/food/snacks/wishsoup
name = "Wish Soup"
@@ -2663,7 +2663,7 @@
. = ..()
reagents.add_reagent("protein", 4)
reagents.add_reagent("tomatojuice", 5)
reagents.add_reagent("imidazoline", 5)
reagents.add_reagent(REAGENT_ID_IMIDAZOLINE, 5)
reagents.add_reagent(REAGENT_ID_WATER, 5)
/obj/item/reagent_containers/food/snacks/bearstew
@@ -2681,9 +2681,9 @@
/obj/item/reagent_containers/food/snacks/bearstew/Initialize()
. = ..()
reagents.add_reagent("protein", 4)
reagents.add_reagent("hyperzine", 5)
reagents.add_reagent(REAGENT_ID_HYPERZINE, 5)
reagents.add_reagent("tomatojuice", 5)
reagents.add_reagent("imidazoline", 5)
reagents.add_reagent(REAGENT_ID_IMIDAZOLINE, 5)
reagents.add_reagent(REAGENT_ID_WATER, 5)
@@ -2742,7 +2742,7 @@
reagents.add_reagent("protein", 3)
reagents.add_reagent("capsaicin", 3)
reagents.add_reagent("tomatojuice", 2)
reagents.add_reagent("hyperzine", 5)
reagents.add_reagent(REAGENT_ID_HYPERZINE, 5)
///////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////Sliceable/////////////////////////////////////////////////
@@ -2950,7 +2950,7 @@
/obj/item/reagent_containers/food/snacks/sliceable/carrotcake/Initialize()
. = ..()
reagents.add_reagent("imidazoline", 10)
reagents.add_reagent(REAGENT_ID_IMIDAZOLINE, 10)
/obj/item/reagent_containers/food/snacks/slice/carrotcake
name = "Carrot Cake slice"
@@ -2980,7 +2980,7 @@
/obj/item/reagent_containers/food/snacks/sliceable/braincake/Initialize()
. = ..()
reagents.add_reagent("protein", 25)
reagents.add_reagent("alkysine", 10)
reagents.add_reagent(REAGENT_ID_ALKYSINE, 10)
/obj/item/reagent_containers/food/snacks/slice/braincake
name = "Brain Cake slice"
@@ -3436,8 +3436,8 @@
. = ..()
reagents.add_reagent("protein", 2)
reagents.add_reagent(REAGENT_ID_AMBROSIAEXTRACT, 2)
reagents.add_reagent("bicaridine", 1)
reagents.add_reagent("kelotane", 1)
reagents.add_reagent(REAGENT_ID_BICARIDINE, 1)
reagents.add_reagent(REAGENT_ID_KELOTANE, 1)
reagents.add_reagent(REAGENT_ID_TOXIN, 1)
/obj/item/reagent_containers/food/snacks/cosmicbrowniesslice
@@ -3776,7 +3776,7 @@
. = ..()
reagents.add_reagent("protein", 5)
reagents.add_reagent("tomatojuice", 6)
reagents.add_reagent("imidazoline", 12)
reagents.add_reagent(REAGENT_ID_IMIDAZOLINE, 12)
/obj/item/reagent_containers/food/snacks/slice/vegetablepizza
name = "Vegetable pizza slice"
@@ -4279,7 +4279,7 @@
. = ..()
set_light(1, 1, "#5dadcf")
reagents.add_reagent("oxycodone", 1)
reagents.add_reagent(REAGENT_ID_OXYCODONE, 1)
reagents.add_reagent(REAGENT_ID_SIFSAP, 5)
reagents.add_reagent(REAGENT_ID_BLISS, 5)
@@ -4365,8 +4365,8 @@
/obj/item/reagent_containers/food/snacks/liquidvitamin/Initialize()
. = ..()
reagents.add_reagent("flour", 20)
reagents.add_reagent("tricordrazine", 5)
reagents.add_reagent("paracetamol", 5)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 5)
reagents.add_reagent(REAGENT_ID_PARACETAMOL, 5)
reagents.add_reagent("enzyme", 1)
reagents.add_reagent(REAGENT_ID_IRON, 3)
@@ -7043,7 +7043,7 @@
/obj/item/reagent_containers/food/snacks/canned/spinach/Initialize()
.=..()
reagents.add_reagent(REAGENT_ID_ADRENALINE, 4)
reagents.add_reagent("hyperzine", 4)
reagents.add_reagent(REAGENT_ID_HYPERZINE, 4)
reagents.add_reagent(REAGENT_ID_IRON, 4)
//////////////////////////////Advanced Canned Food//////////////////////////////
+2 -2
View File
@@ -103,7 +103,7 @@
/obj/item/reagent_containers/food/snacks/bearmeat/Initialize()
. = ..()
reagents.add_reagent("protein", 12)
reagents.add_reagent("hyperzine", 5)
reagents.add_reagent(REAGENT_ID_HYPERZINE, 5)
/obj/item/reagent_containers/food/snacks/xenomeat
name = "xenomeat"
@@ -170,7 +170,7 @@
. = ..()
reagents.add_reagent("protein", 6)
reagents.add_reagent(REAGENT_ID_PHORON, 3)
reagents.add_reagent("myelamine", 3)
reagents.add_reagent(REAGENT_ID_MYELAMINE, 3)
src.bitesize = 3
/obj/item/reagent_containers/food/snacks/meat/worm/attackby(obj/item/W as obj, mob/user as mob)
+1 -1
View File
@@ -262,7 +262,7 @@
. = ..()
bitesize = 5
reagents.add_reagent("protein", 20)
reagents.add_reagent("tricordrazine", 5)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 5)
reagents.add_reagent(REAGENT_ID_IRON, 5)
/obj/item/reagent_containers/food/snacks/cuttlefish
+8 -8
View File
@@ -215,29 +215,29 @@
reagents.add_reagent(REAGENT_ID_STOMACID, 10)
reagents.add_reagent(REAGENT_ID_MUTAGEN, 4)
reagents.add_reagent("thirteenloko", 20)
reagents.add_reagent("hyperzine", 10)
reagents.add_reagent(REAGENT_ID_HYPERZINE, 10)
bitesize = 30
if(4)
name = "Slice Of Good" //anti-tox
desc = "A colourful slice, smelling of pear and coated in delicious cream."
nutriment_desc = list("Hapiness" = 10)
reagents.add_reagent("anti_toxin", 2)
reagents.add_reagent("tricordrazine", 2)
reagents.add_reagent(REAGENT_ID_ANTITOXIN, 2)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 2)
bitesize = 3
if(5)
name = "Slice Of Good" //anti-oxy
desc = "A light slice, it's pretty to look at and smells of vanilla."
nutriment_desc = list("Freedom" = 10)
reagents.add_reagent("dexalinp", 2)
reagents.add_reagent("tricordrazine", 2)
reagents.add_reagent(REAGENT_ID_DEXALINP, 2)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 2)
bitesize = 3
if(6)
name = "Slice Of Good" //anti-burn/brute
desc = "A hearty slice, it smells of chocolate and strawberries."
nutriment_desc = list("Love" = 10)
reagents.add_reagent("bicaridine", 2)
reagents.add_reagent("tricordrazine", 2)
reagents.add_reagent("kelotane", 2)
reagents.add_reagent(REAGENT_ID_BICARIDINE, 2)
reagents.add_reagent(REAGENT_ID_TRICORDRAZINE, 2)
reagents.add_reagent(REAGENT_ID_KELOTANE, 2)
bitesize = 4
/obj/structure/chaoscake/attackby(var/obj/item/W, var/mob/living/user)
+2 -2
View File
@@ -63,7 +63,7 @@
desc = "A small bottle. Contains inaprovaline - used to stabilize patients."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("inaprovaline" = 60)
prefill = list(REAGENT_ID_INAPROVALINE = 60)
/obj/item/reagent_containers/glass/bottle/toxin
name = "toxin bottle"
@@ -98,7 +98,7 @@
desc = "A small bottle of dylovene. Counters poisons, and repairs damage. A wonder drug."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("anti_toxin" = 60)
prefill = list(REAGENT_ID_ANTITOXIN = 60)
/obj/item/reagent_containers/glass/bottle/mutagen
name = "unstable mutagen bottle"
+4 -4
View File
@@ -12,8 +12,8 @@
desc = "A small bottle. Contains inaprovaline - used to stabilize patients."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
reagent = "inaprovaline"
prefill = list("inaprovaline" = 60)
reagent = REAGENT_ID_INAPROVALINE
prefill = list(REAGENT_ID_INAPROVALINE = 60)
/obj/item/reagent_containers/glass/bottle/robot/antitoxin
@@ -21,5 +21,5 @@
desc = "A small bottle of Anti-toxins. Counters poisons, and repairs damage, a wonder drug."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
reagent = "anti_toxin"
prefill = list("anti_toxin" = 60)
reagent = REAGENT_ID_ANTITOXIN
prefill = list(REAGENT_ID_ANTITOXIN = 60)
+12 -12
View File
@@ -3,7 +3,7 @@
desc = "A small green bottle containing some red liquid that claims to heal injuries."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-5"
prefill = list("bicaridine" = 30)
prefill = list(REAGENT_ID_BICARIDINE = 30)
/obj/item/reagent_containers/glass/bottle/potion/healing
@@ -15,32 +15,32 @@
/obj/item/reagent_containers/glass/bottle/potion/fire_resist
name = "fire resistance potion"
desc = "A small green bottle containing some orange liquid that claims to protect the drinker from fire."
prefill = list("dermaline" = 15, "kelotane" = 15)
prefill = list(REAGENT_ID_DERMALINE = 15, REAGENT_ID_KELOTANE = 15)
/obj/item/reagent_containers/glass/bottle/potion/antidote
name = "antidote potion"
desc = "A small green bottle containing some green liquid that claims to cure poisoning."
prefill = list("anti_toxin" = 30)
prefill = list(REAGENT_ID_ANTITOXIN = 30)
/obj/item/reagent_containers/glass/bottle/potion/water
name = "water breathing potion"
desc = "A small green bottle containing some blue liquid that claims to allow the drinker to breathe under water."
prefill = list("dexalinp" = 30)
prefill = list(REAGENT_ID_DEXALINP = 30)
/obj/item/reagent_containers/glass/bottle/potion/regeneration
name = "regeneration potion"
desc = "A small green bottle containing some purple liquid that claims to regenerate severe wounds."
prefill = list("peridaxon" = 30)
prefill = list(REAGENT_ID_PERIDAXON = 30)
/obj/item/reagent_containers/glass/bottle/potion/panacea
name = "panacea potion"
desc = "A small green bottle containing some white liquid that claims to cure all ailments."
prefill = list("spaceacillin" = 30)
prefill = list(REAGENT_ID_SPACEACILLIN = 30)
/obj/item/reagent_containers/glass/bottle/potion/magic
name = "magic resistence potion"
desc = "A small green bottle containing some dark green liquid that claims to cure magical effects."
prefill = list("hyronalin" = 30)
prefill = list(REAGENT_ID_HYRONALIN = 30)
/obj/item/reagent_containers/glass/bottle/potion/lightness
name = "feather weight potion"
@@ -50,7 +50,7 @@
/obj/item/reagent_containers/glass/bottle/potion/SOP
name = "standard operating potion"
desc = "A small green bottle containing some yellow liquid that claims to be important."
prefill = list("myelamine" = 30)
prefill = list(REAGENT_ID_MYELAMINE = 30)
/obj/item/reagent_containers/glass/bottle/potion/shrink
name = "diminution potion"
@@ -65,7 +65,7 @@
/obj/item/reagent_containers/glass/bottle/potion/pain
name = "grit potion"
desc = "A small green bottle containing some thin purple liquid that claims to power through even the most perilous injuries."
prefill = list("tramadol" = 30)
prefill = list(REAGENT_ID_TRAMADOL = 30)
/obj/item/reagent_containers/glass/bottle/potion/faerie
name = "faerie dance potion"
@@ -80,12 +80,12 @@
/obj/item/reagent_containers/glass/bottle/potion/speed
name = "blinding speed potion"
desc = "A small green bottle containing some bubbling orange liquid that claims to make you move at incredible speeds."
prefill = list("hyperzine" = 30)
prefill = list(REAGENT_ID_HYPERZINE = 30)
/obj/item/reagent_containers/glass/bottle/potion/attractiveness
name = "love potion"
desc = "A small green bottle containing some light mint coloured liquid that claims to make you more attractive to potential partners."
prefill = list("menthol" = 30)
prefill = list(REAGENT_ID_MENTHOL = 30)
/obj/item/reagent_containers/glass/bottle/potion/girljuice
name = "girl transformation potion"
@@ -105,7 +105,7 @@
/obj/item/reagent_containers/glass/bottle/potion/bonerepair
name = "mending potion"
desc = "A small green bottle containing some pale blue liquid that claims to fix that which is broken."
prefill = list("osteodaxon" = 1)
prefill = list(REAGENT_ID_OSTEODAXON = 1)
/obj/item/reagent_containers/glass/bottle/potion/truepolymorph
name = "polymorph potion"
+18 -18
View File
@@ -3,7 +3,7 @@
desc = "A small bottle. Bicaridine is an analgesic medication and can be used to treat blunt trauma."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("bicaridine" = 60)
prefill = list(REAGENT_ID_BICARIDINE = 60)
/obj/item/reagent_containers/glass/bottle/vermicetol
name = "vermicetol bottle"
@@ -17,119 +17,119 @@
desc = "A small bottle. A fifty-fifty mix of the popular burn medications kelotane and deramline."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("dermaline" = 30, "kelotane" = 30)
prefill = list(REAGENT_ID_DERMALINE = 30, REAGENT_ID_KELOTANE = 30)
/obj/item/reagent_containers/glass/bottle/dermaline
name = "dermaline bottle"
desc = "A small bottle. Dermaline is the next step in burn medication. Works twice as good as kelotane and enables the body to restore even the direst heat-damaged tissue."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("dermaline" = 60)
prefill = list(REAGENT_ID_DERMALINE = 60)
/obj/item/reagent_containers/glass/bottle/carthatoline
name = "carthatoline bottle"
desc = "A small bottle. Carthatoline is strong evacuant used to treat severe poisoning."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("carthatoline" = 60)
prefill = list(REAGENT_ID_CARTHATOLINE = 60)
/obj/item/reagent_containers/glass/bottle/dexalinp
name = "dexalinp bottle"
desc = "A small bottle. Dexalin Plus is used in the treatment of oxygen deprivation. It is highly effective."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("dexalinp" = 60)
prefill = list(REAGENT_ID_DEXALINP = 60)
/obj/item/reagent_containers/glass/bottle/tramadol
name = "tramadol bottle"
desc = "A small bottle. A simple, yet effective painkiller."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("tramadol" = 60)
prefill = list(REAGENT_ID_TRAMADOL = 60)
/obj/item/reagent_containers/glass/bottle/oxycodone
name = "oxycodone bottle"
desc = "A small bottle. An effective and very addictive painkiller."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("oxycodone" = 60)
prefill = list(REAGENT_ID_OXYCODONE = 60)
/obj/item/reagent_containers/glass/bottle/alkysine
name = "alkysine bottle"
desc = "A small bottle. Alkysine is a drug used to lessen the damage to neurological tissue after a catastrophic injury. Can heal brain tissue."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("alkysine" = 60)
prefill = list(REAGENT_ID_ALKYSINE = 60)
/obj/item/reagent_containers/glass/bottle/imidazoline
name = "imidazoline bottle"
desc = "A small bottle. Heals eye damage."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("imidazoline" = 60)
prefill = list(REAGENT_ID_IMIDAZOLINE = 60)
/obj/item/reagent_containers/glass/bottle/peridaxon
name = "peridaxon bottle"
desc = "A small bottle. Used to encourage recovery of internal organs and nervous systems. Medicate cautiously."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("peridaxon" = 60)
prefill = list(REAGENT_ID_PERIDAXON = 60)
/obj/item/reagent_containers/glass/bottle/osteodaxon
name = "osteodaxon bottle"
desc = "A small bottle. An experimental drug used to heal bone fractures."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("osteodaxon" = 60)
prefill = list(REAGENT_ID_OSTEODAXON = 60)
/obj/item/reagent_containers/glass/bottle/myelamine
name = "myelamine bottle"
desc = "A small bottle. Used to rapidly clot internal hemorrhages by increasing the effectiveness of platelets."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("myelamine" = 60)
prefill = list(REAGENT_ID_MYELAMINE = 60)
/obj/item/reagent_containers/glass/bottle/hyronalin
name = "hyronalin bottle"
desc = "A small bottle. Hyronalin is a medicinal drug used to counter the effect of radiation poisoning."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("hyronalin" = 60)
prefill = list(REAGENT_ID_HYRONALIN = 60)
/obj/item/reagent_containers/glass/bottle/arithrazine
name = "arithrazine bottle"
desc = "A small bottle. Arithrazine is an unstable medication used for the most extreme cases of radiation poisoning."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("arithrazine" = 60)
prefill = list(REAGENT_ID_ARITHRAZINE = 60)
/obj/item/reagent_containers/glass/bottle/spaceacillin
name = "spaceacillin bottle"
desc = "A small bottle. An all-purpose antiviral agent."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("spaceacillin" = 60)
prefill = list(REAGENT_ID_SPACEACILLIN = 60)
/obj/item/reagent_containers/glass/bottle/corophizine
name = "corophizine bottle"
desc = "A small bottle. A wide-spectrum antibiotic drug. Powerful and uncomfortable in equal doses."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("corophizine" = 60)
prefill = list(REAGENT_ID_COROPHIZINE = 60)
/obj/item/reagent_containers/glass/bottle/rezadone
name = "rezadone bottle"
desc = "A small bottle. A powder with almost magical properties, this substance can effectively treat genetic damage in humanoids, though excessive consumption has side effects."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("rezadone" = 60)
prefill = list(REAGENT_ID_REZADONE = 60)
/obj/item/reagent_containers/glass/bottle/healing_nanites
name = "healing nanites bottle"
desc = "A small bottle. Miniature medical robots that swiftly restore bodily damage."
icon = 'icons/obj/chemical.dmi'
icon_state = "bottle-4"
prefill = list("healing_nanites" = 60)
prefill = list(REAGENT_ID_HEALINGNANITES = 60)
/obj/item/reagent_containers/glass/bottle/ickypak
name = "ickypak bottle"