From dca81de36c57a8d70e58328e18b9e4dce3269ac8 Mon Sep 17 00:00:00 2001 From: chefferz Date: Thu, 22 Aug 2019 20:09:52 -0400 Subject: [PATCH] Gives His Grace stamina regeneration His Grace, the 20TC item, is meant to absorb stun damage. When it feeds on corpses, its hunger increases quickly and steadily, but the current stamina system makes it impossible to actually fight without stamcritting yourself and getting eaten. This gives regeneration to where you can actually use His Grace in the later stages without suffering from exhaustion. --- code/game/objects/items/his_grace.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/his_grace.dm b/code/game/objects/items/his_grace.dm index c6f246ab97..f4405d578e 100644 --- a/code/game/objects/items/his_grace.dm +++ b/code/game/objects/items/his_grace.dm @@ -93,6 +93,7 @@ master.remove_status_effect(STATUS_EFFECT_HISGRACE) REMOVE_TRAIT(src, TRAIT_NODROP, HIS_GRACE_TRAIT) master.Knockdown(60) + master.adjustStaminaLoss(-5) master.adjustBruteLoss(master.maxHealth) playsound(master, 'sound/effects/splat.ogg', 100, 0) else