From 68dea2c73b91888edbbfabe2a08c59156a647ad3 Mon Sep 17 00:00:00 2001 From: Alien <68290943+alien3301@users.noreply.github.com> Date: Sun, 22 Feb 2026 21:27:45 +0200 Subject: [PATCH] Replaces formaldehyde in traitor poison kit with anacea (#95190) ## About The Pull Request Anacea purges medicines and prevents multiver from working. Incredibly good with any kind of poison ## Why It's Good For The Game The 6 TC poison kit should have the chemical that makes every poison much much stronger over something that's barely even a poison ## Changelog :cl: balance: Replaced formaldehyde with anacea in traitor poison kits /:cl: --- code/game/objects/items/storage/uplink_kits.dm | 2 +- code/modules/reagents/reagent_containers/cups/bottle.dm | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/uplink_kits.dm b/code/game/objects/items/storage/uplink_kits.dm index 763de372b6e..a022243f9f2 100644 --- a/code/game/objects/items/storage/uplink_kits.dm +++ b/code/game/objects/items/storage/uplink_kits.dm @@ -478,7 +478,7 @@ new /obj/item/reagent_containers/cup/bottle/polonium(src) new /obj/item/reagent_containers/cup/bottle/venom(src) new /obj/item/reagent_containers/cup/bottle/fentanyl(src) - new /obj/item/reagent_containers/cup/bottle/formaldehyde(src) + new /obj/item/reagent_containers/cup/bottle/anacea(src) new /obj/item/reagent_containers/cup/bottle/spewium(src) new /obj/item/reagent_containers/cup/bottle/syndol(src) new /obj/item/reagent_containers/cup/bottle/cyanide(src) diff --git a/code/modules/reagents/reagent_containers/cups/bottle.dm b/code/modules/reagents/reagent_containers/cups/bottle.dm index 5a8e8bc5a7d..e4ad220cb00 100644 --- a/code/modules/reagents/reagent_containers/cups/bottle.dm +++ b/code/modules/reagents/reagent_containers/cups/bottle.dm @@ -35,6 +35,11 @@ desc = "A small bottle of cyanide. Bitter almonds?" list_reagents = list(/datum/reagent/toxin/cyanide = 30) +/obj/item/reagent_containers/cup/bottle/anacea + name = "anacea bottle" + desc = "A small bottle of anacea." + list_reagents = list(/datum/reagent/toxin/anacea = 30) + /obj/item/reagent_containers/cup/bottle/spewium name = "spewium bottle" desc = "A small bottle of spewium."