From 8c3324ea2ca3ebac51deb893485bb05efb1c8fdf Mon Sep 17 00:00:00 2001 From: Steelpoint Date: Thu, 15 Nov 2018 00:01:19 +0800 Subject: [PATCH] PenAcid+AdvAnlyRemoved --- code/game/objects/items/storage/firstaid.dm | 10 +++++++++- code/modules/reagents/reagent_containers/pill.dm | 6 ++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 82188a5dc54..deadf3bf433 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -149,7 +149,7 @@ /obj/item/reagent_containers/pill/patch/synthflesh = 3, /obj/item/reagent_containers/hypospray/medipen/atropine = 2, /obj/item/stack/medical/gauze = 1, - /obj/item/healthanalyzer/advanced = 1) + /obj/item/storage/pill_bottle/penacid = 1) generate_items_inside(items_inside,src) /obj/item/storage/firstaid/tactical @@ -294,3 +294,11 @@ /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/penacid + name = "bottle of pentetic acid" + desc = "Contains pills to expunge radioation and toxins" + +/obj/item/storage/pill_bottle/penacid/PopulateContents() + for(var/i in 1 to 7) + new /obj/item/reagent_containers/pill/penacid(src) \ No newline at end of file diff --git a/code/modules/reagents/reagent_containers/pill.dm b/code/modules/reagents/reagent_containers/pill.dm index 5c83bff9970..481b06c665f 100644 --- a/code/modules/reagents/reagent_containers/pill.dm +++ b/code/modules/reagents/reagent_containers/pill.dm @@ -160,6 +160,12 @@ list_reagents = list("psicodine" = 10) icon_state = "pill22" roundstart = 1 +/obj/item/reagent_containers/pill/penacid + name = "pentetic acid pill" + desc = "Used to expunge radioation and toxins." + list_reagents = list("pen_acid" = 10) + icon_state = "pill22" + roundstart = 1 ///////////////////////////////////////// this pill is used only in a legion mob drop /obj/item/reagent_containers/pill/shadowtoxin name = "black pill"