From f5bb6d1fb4c94b7419950af540c6fa8e9d266d9a Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Sat, 6 Jul 2024 10:35:43 +0200 Subject: [PATCH] Nanocalcium pens now inject 10u of epinephrine (#26034) * Adds epi to nanocalcium * Actually add volume * Now 10u --- code/modules/reagents/reagent_containers/hypospray.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index c6c5dd23839..34e4f42eddd 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -246,9 +246,9 @@ name = "protoype nanite autoinjector" desc = "A highly experimental prototype chemical designed to fully mend limbs and organs of soldiers in the field, shuts down body systems whilst aiding in repair.
WARNING: Side effects can cause temporary paralysis, loss of co-ordination and sickness. Do not use with any kind of stimulant or drugs. Serious damage can occur!" icon_state = "bonepen" - amount_per_transfer_from_this = 30 - volume = 30 - list_reagents = list("nanocalcium" = 30) + amount_per_transfer_from_this = 40 + volume = 40 + list_reagents = list("nanocalcium" = 30, "epinephrine" = 10) /obj/item/reagent_containers/hypospray/autoinjector/nanocalcium/attack(mob/living/M, mob/user) if(..())