Adds unique healing chems for regen extracts

This commit is contained in:
Orotheim
2024-09-13 11:04:33 +01:00
committed by GitHub
parent 0869cabcb2
commit 0c435d0d85
@@ -1521,3 +1521,40 @@ datum/reagent/medicine/styptic_powder/overdose_start(mob/living/M)
name = "Synthi-Sanguirite"
description = "A synthetic coagulant used to help bleeding wounds clot faster. Not quite as effective as name brand Sanguirite, especially on patients with lots of cuts."
clot_coeff_per_wound = 0.8
//Chem for regen extracts to use
/datum/reagent/medicine/pure_regen_jelly
name = "Pure Regenerative Jelly"
description = "Very pure form of regenerative jelly that regenerates all types of damage rapidly, without harming slime anatomy."
reagent_state = LIQUID
color = "#91D865"
metabolization_rate = 0.25 * REAGENTS_METABOLISM
taste_description = "jelly"
can_synth = FALSE
/datum/reagent/medicine/pure_regen_jelly/on_mob_life(mob/living/carbon/M)
M.adjustBruteLoss(-5*REM, 0)
M.adjustFireLoss(-5*REM, 0)
M.adjustOxyLoss(-5*REM, 0)
M.adjustToxLoss(-5*REM, 0, TRUE) //heals TOXINLOVERs
. = 1
..()
/datum/reagent/medicine/pure_neo_jelly
name = "Pure Neo Jelly"
description = "Pure Neo-Jelly that rapidly heals all damage."
reagent_state = LIQUID
metabolization_rate = 0.25 * REAGENTS_METABOLISM
color = "#91D865"
taste_description = "jelly"
can_synth = FALSE
/datum/reagent/medicine/pure_neo_jelly/on_mob_life(mob/living/carbon/M)
M.adjustBruteLoss(-1*REM, 0)
M.adjustFireLoss(-1*REM, 0)
M.adjustOxyLoss(-1*REM, 0)
M.adjustToxLoss(-1*REM, 0, TRUE) //heals TOXINLOVERs
M.heal_bodypart_damage(3,3)
. = 1
..()