From ee66a24288a82d6c4e0f90efb28718fc221df91a Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Tue, 27 Feb 2018 15:01:02 +0000 Subject: [PATCH] Prayer bead buffs --- .../code/game/objects/items/holy_weapons.dm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/modular_citadel/code/game/objects/items/holy_weapons.dm b/modular_citadel/code/game/objects/items/holy_weapons.dm index 7184388475..e7382a13ab 100644 --- a/modular_citadel/code/game/objects/items/holy_weapons.dm +++ b/modular_citadel/code/game/objects/items/holy_weapons.dm @@ -30,7 +30,7 @@ "You kneel[M == user ? null : " next to [M]"] and begin a prayer to [deity_name].") praying = TRUE - if(do_after(user, 150, target = M)) + if(do_after(user, 100, target = M)) if(istype(M, /mob/living/carbon/human)) // This probably should not work on catpeople. They're unholy abominations. var/mob/living/carbon/human/target = M @@ -40,12 +40,11 @@ else if(is_servant_of_ratvar(M)) remove_servant_of_ratvar(M) - if(prob(25)) - to_chat(target, "[user]'s prayer to [deity_name] has eased your pain!") - target.adjustToxLoss(-5) - target.adjustOxyLoss(-5) - target.adjustBruteLoss(-5) - target.adjustFireLoss(-5) + to_chat(target, "[user]'s prayer to [deity_name] has eased your pain!") + target.adjustToxLoss(-5) + target.adjustOxyLoss(-5) + target.adjustBruteLoss(-5) + target.adjustFireLoss(-5) praying = FALSE