make his grace heal IPCs (#27865)

* make his grace heal IPCs

* remove unnecessary line for his grace buff

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: Paul <90473506+pwbokie@users.noreply.github.com>

---------

Signed-off-by: Paul <90473506+pwbokie@users.noreply.github.com>
Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
This commit is contained in:
Paul
2025-01-07 23:17:47 +00:00
committed by GitHub
co-authored by DGamerL
parent ec84f16ee4
commit c9d2ab2568
+7 -5
View File
@@ -46,11 +46,13 @@
qdel(src)
return
var/grace_heal = bloodlust * 0.05
owner.adjustBruteLoss(-grace_heal)
owner.adjustFireLoss(-grace_heal)
owner.adjustToxLoss(-grace_heal)
owner.adjustOxyLoss(-(grace_heal * 2))
owner.adjustCloneLoss(-grace_heal)
var/mob/living/carbon/human/owner_human = owner
owner_human.adjustBruteLoss(-grace_heal, robotic = TRUE)
owner_human.adjustFireLoss(-grace_heal, robotic = TRUE)
owner_human.adjustToxLoss(-grace_heal)
owner_human.adjustOxyLoss(-(grace_heal * 2))
owner_human.adjustCloneLoss(-grace_heal)
/datum/status_effect/his_grace/on_remove()
add_attack_logs(owner, owner, "lost His Grace's stun immunity", ATKLOG_ALL)