From add8836b58de49e8b036e44c69fbdca8cfe7c712 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Sun, 23 Jan 2022 22:28:40 -0500 Subject: [PATCH] made a smidgen oops, earthsblood exists now too --- code/modules/hydroponics/seedtypes/chili.dm | 2 +- code/modules/reagents/reagents/medicine.dm | 24 +++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seedtypes/chili.dm b/code/modules/hydroponics/seedtypes/chili.dm index 7eade87e3b1..37330ff53d1 100644 --- a/code/modules/hydroponics/seedtypes/chili.dm +++ b/code/modules/hydroponics/seedtypes/chili.dm @@ -40,7 +40,7 @@ display_name = "ghost pepper plants" kitchen_tag = "ghostchili" mutants = null - chems = list("condensedcapsaicin"list(3,10), "nutriment" = list (1,25)) + chems = list("condensedcapsaicin" = list (3,10), "nutriment" = list (1,25)) /datum/seed/chili/ghost/New() ..() diff --git a/code/modules/reagents/reagents/medicine.dm b/code/modules/reagents/reagents/medicine.dm index e0130e54bbc..8798dbdf090 100644 --- a/code/modules/reagents/reagents/medicine.dm +++ b/code/modules/reagents/reagents/medicine.dm @@ -1501,3 +1501,27 @@ metabolism = REM * 0.002 overdose = REAGENTS_OVERDOSE * 0.25 scannable = 1 + +/datum/reagent/earthsblood + name = "Earthsblood" + id = "earthsblood" + description = "A rare plant extract with immense healing and life giving applications. Induces a potent psychoactive state." + taste_description = "honey and sunlight" + reagent_state = LIQUID + color = "#ffb500" + overdose = REAGENTS_OVERDOSE * 0.67 + scannable = 1 + +/datum/reagent/earthsblood/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + M.adjustBruteLoss (-3 * removed) + M.adjustBurnLoss (-3 * removed) + M.adjustOxyLoss(-10 * removed) + M.adjustToxLoss(-3 * removed) + M.adjustCloneLoss(-1 * removed) + M.druggy = max(M.druggy, 20) + M.make_jittery (20) + M.hallucination = max(M.hallucination, 2) + +/datum/reagent/earthsblood/overdose(var/mob/living/carbon/M, var/alien) + ..() + M.adjustBrainLoss (1.5 * removed) // Your life for your mind... \ No newline at end of file