From 4317881bccfd704cba0e00909a7c4b058519b7ea Mon Sep 17 00:00:00 2001 From: matttheficus <57759731+matttheficus@users.noreply.github.com> Date: Fri, 7 Jul 2023 08:41:26 -0400 Subject: [PATCH] Adds Hydrocodone to the Syndi Med Duffel (#21472) * fix time * a slight reduction --- code/game/objects/items/weapons/storage/backpack.dm | 1 + code/modules/reagents/reagent_containers/chemical_bottle.dm | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index aa2638ccfca..bf10509cec9 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -574,6 +574,7 @@ new /obj/item/FixOVein(src) new /obj/item/clothing/suit/straight_jacket(src) new /obj/item/clothing/mask/muzzle(src) + new /obj/item/reagent_containers/glass/bottle/reagent/hydrocodone(src) /obj/item/storage/backpack/duffel/syndie/med/surgery_fake //for maint spawns name = "surgery duffelbag" diff --git a/code/modules/reagents/reagent_containers/chemical_bottle.dm b/code/modules/reagents/reagent_containers/chemical_bottle.dm index 8a0598e375b..0dc559fff07 100644 --- a/code/modules/reagents/reagent_containers/chemical_bottle.dm +++ b/code/modules/reagents/reagent_containers/chemical_bottle.dm @@ -219,6 +219,11 @@ desc = "A reagent bottle. Contains morphine." list_reagents = list("morphine" = 50) +/obj/item/reagent_containers/glass/bottle/reagent/hydrocodone + name = "hydrocodone bottle" + desc = "A reagent bottle. Contains hydrocodone." + list_reagents = list("hydrocodone" = 30) + /obj/item/reagent_containers/glass/bottle/reagent/insulin name = "insulin bottle" desc = "A reagent bottle. Contains insulin."