From 6cc42aa2cf4b30d798ff3082b3ee8ee734863ffb Mon Sep 17 00:00:00 2001 From: erwgd Date: Sat, 18 May 2019 20:20:17 +0100 Subject: [PATCH] Adds potassium iodide to NanoMed Plus (#43963) * Added antihol bottle, corazone pill, potass_iodide pill and pill bottle Added Potassium iodide bottle and pills to smartfridge preload Added medicines to NanoMed and NanoMed Plus * Added small number of potass iodide pills to NanoMed Plus Removed other medicines being added to vendors in last commit * Added potass iodide bottle to NanoMed Plus, removed epinephrine bottle and potass iodide pills * removed unused prebuilt meds --- code/game/objects/items/storage/firstaid.dm | 2 +- code/modules/reagents/reagent_containers/pill.dm | 2 +- code/modules/vending/medical.dm | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 1de02f46cf4..531ac28eeab 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -324,7 +324,7 @@ /obj/item/storage/pill_bottle/penacid name = "bottle of pentetic acid pills" - desc = "Contains pills to expunge radioation and toxins" + desc = "Contains pills to expunge radiation and toxins." /obj/item/storage/pill_bottle/penacid/PopulateContents() for(var/i in 1 to 3) diff --git a/code/modules/reagents/reagent_containers/pill.dm b/code/modules/reagents/reagent_containers/pill.dm index f82c37bacf6..7783c7849e3 100644 --- a/code/modules/reagents/reagent_containers/pill.dm +++ b/code/modules/reagents/reagent_containers/pill.dm @@ -173,7 +173,7 @@ /obj/item/reagent_containers/pill/penacid name = "pentetic acid pill" - desc = "Used to expunge radioation and toxins." + desc = "Used to expunge radiation and toxins." list_reagents = list("pen_acid" = 10) icon_state = "pill22" rename_with_volume = TRUE diff --git a/code/modules/vending/medical.dm b/code/modules/vending/medical.dm index 866b07a6e65..ad7341cc29e 100644 --- a/code/modules/vending/medical.dm +++ b/code/modules/vending/medical.dm @@ -14,9 +14,10 @@ /obj/item/reagent_containers/pill/salbutamol = 2, /obj/item/reagent_containers/pill/insulin = 5, /obj/item/reagent_containers/glass/bottle/charcoal = 4, - /obj/item/reagent_containers/glass/bottle/epinephrine = 4, - /obj/item/reagent_containers/glass/bottle/salglu_solution = 3, + /obj/item/reagent_containers/glass/bottle/epinephrine = 3, /obj/item/reagent_containers/glass/bottle/morphine = 4, + /obj/item/reagent_containers/glass/bottle/potass_iodide = 1, + /obj/item/reagent_containers/glass/bottle/salglu_solution = 3, /obj/item/reagent_containers/glass/bottle/toxin = 3, /obj/item/reagent_containers/syringe/antiviral = 6, /obj/item/reagent_containers/medspray/styptic = 2,