Update drink_reagents.dm

This commit is contained in:
Trilbyspaceclone
2020-08-04 09:33:05 -04:00
committed by GitHub
parent 0f29235e6a
commit 4ea05ab07e
@@ -371,9 +371,10 @@
glass_name = "glass of forest tea" glass_name = "glass of forest tea"
glass_desc = "A lovely glass of tea and honey." glass_desc = "A lovely glass of tea and honey."
/datum/reagent/consumable/tea/green/on_mob_life(mob/living/carbon/M) /datum/reagent/consumable/tea/forest/on_mob_life(mob/living/carbon/M)
if(M.getToxLoss() && prob(40))//Two anti-toxins working here if(M.getToxLoss() && prob(40))//Two anti-toxins working here
M.adjustToxLoss(-1, 0, TRUE) //heals TOXINLOVERs M.adjustToxLoss(-1, 0, TRUE) //heals TOXINLOVERs
//Reminder that honey heals toxin lovers
M.dizziness = max(0,M.dizziness-2) M.dizziness = max(0,M.dizziness-2)
M.drowsyness = max(0,M.drowsyness-1) M.drowsyness = max(0,M.drowsyness-1)
M.jitteriness = max(0,M.jitteriness-3) M.jitteriness = max(0,M.jitteriness-3)
@@ -399,7 +400,6 @@
M.disgust = 0 M.disgust = 0
. = 1 . = 1
/datum/reagent/consumable/lemonade /datum/reagent/consumable/lemonade
name = "Lemonade" name = "Lemonade"
description = "Sweet, tangy lemonade. Good for the soul." description = "Sweet, tangy lemonade. Good for the soul."