Adds some basic medicine autoinjectors/bottles to the code so I can deviously try to add them to ops orders later. (#15031)

This commit is contained in:
anconfuzedrock
2022-11-11 15:16:57 +01:00
committed by GitHub
parent 2e1b6bf8a6
commit 475b035cd8
3 changed files with 35 additions and 2 deletions
@@ -177,7 +177,7 @@
desc = "A small bottle of cough syrup. Don't take too much!"
icon_state = "bottle-3"
reagents_to_add = list(/decl/reagent/coughsyrup = 60)
/obj/item/reagent_containers/glass/bottle/coagzolug
name = "coagzolug bottle"
desc = "A small bottle of coagzolug. A medication that encourages the coagulation of blood, slowing down any bleeding. Overdose causes damage to the heart."
@@ -225,3 +225,9 @@
desc = "A small bottle. Contains perconol - treats minor-moderate pain as a result of physical injury."
icon_state = "bottle-3"
reagents_to_add = list(/decl/reagent/perconol = 60)
/obj/item/reagent_containers/glass/bottle/hyronalin
name = "hyronalin bottle"
desc = "A small bottle. Contains hyronalin - treats mild moderate radiation poisoning."
icon_state = "bottle-4"
reagents_to_add = list(/decl/reagent/hyronalin = 60)
@@ -321,4 +321,25 @@
volume = 20
amount_per_transfer_from_this = 20
reagents_to_add = list(/decl/reagent/sanasomnum = 20)
reagents_to_add = list(/decl/reagent/sanasomnum = 20)
/obj/item/reagent_containers/hypospray/autoinjector/bicaridine
name = "bicaridine autoinjector"
desc = "An autoinjector loaded with bicaridine, a chemical used to treat physical trauma."
volume = 15
amount_per_transfer_from_this = 15
reagents_to_add = list(/decl/reagent/bicaridine = 15)
/obj/item/reagent_containers/hypospray/autoinjector/kelotane
name = "kelotane autoinjector"
desc = "An autoinjector loaded with kelotane, a chemical used to treat burnt tissue."
volume = 15
amount_per_transfer_from_this = 15
reagents_to_add = list(/decl/reagent/kelotane = 15)
/obj/item/reagent_containers/hypospray/autoinjector/peridaxon
name = "peridaxon autoinjector"
desc = "An autoinjector loaded with peridaxon, a chemical used to treat minor organ damage."
volume = 10
amount_per_transfer_from_this = 10
reagents_to_add = list(/decl/reagent/peridaxon = 10)