From 0c574fb62a7994b3d137ef3832640ebf856dbdc6 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Fri, 4 Oct 2019 16:53:32 -0500 Subject: [PATCH] Update medicine_reagents.dm --- code/modules/reagents/chemistry/reagents/medicine_reagents.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index b6b4f0652e..5b7afe51f8 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -421,6 +421,7 @@ datum/reagent/medicine/styptic_powder/overdose_start(mob/living/M) color = "#FFEBEB" pH = 11.5 metabolization_rate = 5 * REAGENTS_METABOLISM + overdose_threshold = 40 /datum/reagent/medicine/synthflesh/reaction_mob(mob/living/M, method=TOUCH, reac_volume,show_message = 1) if(iscarbon(M)) @@ -441,6 +442,9 @@ datum/reagent/medicine/styptic_powder/overdose_start(mob/living/M) SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, "painful_medicine", /datum/mood_event/painful_medicine) ..() +/datum/reagent/medicine/synthflesh/overdose_start(mob/living/M) + metabolization_rate = 15 * REAGENTS_METABOLISM + /datum/reagent/medicine/charcoal name = "Charcoal" id = "charcoal"