From 2d98626ce36ca2dbbf397b368f6a5f01f8f1da03 Mon Sep 17 00:00:00 2001 From: Xhuis Date: Wed, 30 Sep 2015 13:23:06 -0400 Subject: [PATCH] Nerfs the buff --- .../Consumable-Reagents/Drink-Reagents/Drinks.dm | 12 ++++++------ html/changelogs/Xhuis-DoctorsDelight.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Consumable-Reagents/Drink-Reagents/Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Consumable-Reagents/Drink-Reagents/Drinks.dm index 06a5c64710c..ea1343f832f 100644 --- a/code/modules/reagents/Chemistry-Reagents/Consumable-Reagents/Drink-Reagents/Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Consumable-Reagents/Drink-Reagents/Drinks.dm @@ -396,13 +396,13 @@ color = "#FF8CFF" // rgb: 255, 140, 255 /datum/reagent/consumable/doctor_delight/on_mob_life(mob/living/M) - M.adjustBruteLoss(-2) - M.adjustFireLoss(-2) - M.adjustToxLoss(-2) - M.adjustOxyLoss(-2) - if(M.nutrition && (M.nutrition - 2 > 0)) + M.adjustBruteLoss(-0.5) + M.adjustFireLoss(-0.5) + M.adjustToxLoss(-0.5) + M.adjustOxyLoss(-0.5) + if(M.nutrition && (M.nutrition - 1 > 0)) if(!(M.mind && M.mind.assigned_role == "Medical Doctor")) //Drains the nutrition of the holder. Not medical doctors though, since it's the Doctor's Delight! - M.nutrition -= 2 + M.nutrition -= 1 ..() /datum/reagent/consumable/chocolatepudding diff --git a/html/changelogs/Xhuis-DoctorsDelight.yml b/html/changelogs/Xhuis-DoctorsDelight.yml index c11831ac07c..0e77af1b2fb 100644 --- a/html/changelogs/Xhuis-DoctorsDelight.yml +++ b/html/changelogs/Xhuis-DoctorsDelight.yml @@ -3,5 +3,5 @@ delete-after: True changes: - tweak: "Doctor's Delight now requires cryoxadone in its recipe instead of omnizine." - - tweak: "Doctor's Delight now restores two brute, burn, toxin, and oxygen damage per tick." + - tweak: "Doctor's Delight now restores half a point of brute, burn, toxin, and oxygen damage per tick." - tweak: "Doctor's Delight now drains nutrition while it's in your system (that is, unless you're a doctor)." \ No newline at end of file