From 82b09410943bd8d1e1a77d0e785240bb29f4ea11 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Fri, 1 Mar 2019 14:04:58 +0100 Subject: [PATCH] Adding a new anti toxin A new phoron based anti toxin with special properties. Mixing it with ethanol is a bad idea. --- .../Chemistry-Reagents_chomp.dm | 33 ++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm index f112259422..5270d8101f 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents_chomp.dm @@ -64,7 +64,7 @@ new /obj/item/weapon/reagent_containers/food/snacks/monkeycube/sarucube(location) return //////////////////////////////////// -////////////That good shit///////// +//////////// MEDICINE ///////// ////////////////////////////////// /datum/reagent/claridyl name = "Claridyl Natural Remedy" @@ -120,6 +120,37 @@ color = "#000000" metabolism = REM * 5 +/datum/reagent/eden + name = "Eden" + id = "eden" + description = "The ultimate anti toxin unrivaled, it corrects impurities within the body but punishes those who attain them with a burning sensation" + taste_description = "peace" + color = "#00FFBE" + overdose = REAGENTS_OVERDOSE * 1 + metabolism = 0 + +/datum/reagent/eden/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + if(alien == IS_SLIME || alien == IS_DIONA) + return + if(M.getToxLoss()) + M.adjustFireLoss(1.2) + M.adjustToxLoss(-1) + +/datum/reagent/eden/snake + name = "Tainted Eden" + id = "eden_snake" + metabolism = 0.1 + description = "It used to be an anti toxin until it was tainted." + taste_description = "hellfire" + color = "#FF0000" + +/datum/reagent/eden/snake/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + M.adjustOxyLoss(1) + M.adjustFireLoss(1) + M.adjustBruteLoss(1) + M.adjustToxLoss(1) + + //////////////////////////////////////////////// /////////DRINKS//////////////////////////////// //////////////////////////////////////////////