diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index 6272d377..a213b1be 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -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 + ..() +