Nerfs the buff

This commit is contained in:
Xhuis
2015-09-30 13:23:06 -04:00
parent 4e33e464a4
commit 2d98626ce3
2 changed files with 7 additions and 7 deletions
@@ -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
+1 -1
View File
@@ -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)."