From 35d7b314c723c2cdca511e7b13190ef72da89816 Mon Sep 17 00:00:00 2001 From: Tostah <64234012+Tostah@users.noreply.github.com> Date: Sun, 25 May 2025 22:50:50 -0400 Subject: [PATCH] Adds 2u sanguarite to atropine medipens (#91325) ## About The Pull Request Adds 2u sanguarite (Coagulant) to atropine medipens (The ones provided to nuclear operatives and in the advanced medkit) ## Why It's Good For The Game Every crew member who isnt a syndicate operative spawns with a medipen with coagulant. It doesn't make sense why syndicate operatives somehow have worse medipens provided to them in their survival kits, while being basically a direct upgrade otherwise. In my experience, bleeds tend to be an absolute killer of nukies. Letting nukies deal with a single bleed by default puts them on-par with any other human in this regard, and reinforces the belief that 'the medipen in the survival box helps with bleeds'. ## Changelog :cl: add: Adds 2u sanguarite to atropens /:cl: --- code/modules/reagents/reagent_containers/hypospray.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index d7639735ebd..e786badff1d 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -289,11 +289,11 @@ /obj/item/reagent_containers/hypospray/medipen/atropine name = "atropine autoinjector" - desc = "A rapid way to save a person from a critical injury state!" + desc = "A rapid way to save a person from a critical injury state! Additionally contains a powerful coagulant to prevent blood loss." icon_state = "atropen" inhand_icon_state = "atropen" base_icon_state = "atropen" - list_reagents = list(/datum/reagent/medicine/atropine = 10) + list_reagents = list(/datum/reagent/medicine/atropine = 10, /datum/reagent/medicine/coagulant = 2) /obj/item/reagent_containers/hypospray/medipen/snail name = "snail shot"