From 475b035cd8b1d3947efd306a15f9e59a603a2ec5 Mon Sep 17 00:00:00 2001 From: anconfuzedrock Date: Fri, 11 Nov 2022 09:16:57 -0500 Subject: [PATCH] Adds some basic medicine autoinjectors/bottles to the code so I can deviously try to add them to ops orders later. (#15031) --- .../reagent_containers/glass/bottle.dm | 8 ++++++- .../reagents/reagent_containers/hypospray.dm | 23 ++++++++++++++++++- .../anconfuzedrock-cheminjectors.yml | 6 +++++ 3 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/anconfuzedrock-cheminjectors.yml diff --git a/code/modules/reagents/reagent_containers/glass/bottle.dm b/code/modules/reagents/reagent_containers/glass/bottle.dm index a5b121c7c26..9bc10558b25 100644 --- a/code/modules/reagents/reagent_containers/glass/bottle.dm +++ b/code/modules/reagents/reagent_containers/glass/bottle.dm @@ -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) \ No newline at end of file diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index f84f668d0b0..c22f5b5f384 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -321,4 +321,25 @@ volume = 20 amount_per_transfer_from_this = 20 - reagents_to_add = list(/decl/reagent/sanasomnum = 20) \ No newline at end of file + 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) \ No newline at end of file diff --git a/html/changelogs/anconfuzedrock-cheminjectors.yml b/html/changelogs/anconfuzedrock-cheminjectors.yml new file mode 100644 index 00000000000..d0b62294c6d --- /dev/null +++ b/html/changelogs/anconfuzedrock-cheminjectors.yml @@ -0,0 +1,6 @@ +author: anconfuzedrock + +delete-after: True + +changes: + - rscadd: "There are now pure bicaridine, kelotane, and peridaxon autoinjectors, as well as hyronalin bottles, as adminspawn items." \ No newline at end of file