From 313394de2f0fb4f39c7fb5c1eb57126b88f6e99e Mon Sep 17 00:00:00 2001 From: PopeDaveThe3th <80988376+PopeDaveThe3th@users.noreply.github.com> Date: Thu, 18 Aug 2022 09:39:26 -0400 Subject: [PATCH] Buffs His Grace (#18817) * Buffs his grace * Update code/game/objects/items/his_grace.dm Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> --- code/game/objects/items/his_grace.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/his_grace.dm b/code/game/objects/items/his_grace.dm index 9c8d79dd60c..7fd50f6167d 100644 --- a/code/game/objects/items/his_grace.dm +++ b/code/game/objects/items/his_grace.dm @@ -14,7 +14,7 @@ lefthand_file = 'icons/mob/inhands/equipment/toolbox_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/toolbox_righthand.dmi' w_class = WEIGHT_CLASS_GIGANTIC - force = 12 + force = 15 attack_verb = list("robusted") hitsound = 'sound/weapons/smash.ogg' drop_sound = 'sound/items/handling/toolbox_drop.ogg' @@ -96,9 +96,9 @@ drowse() return if(bloodthirst < HIS_GRACE_CONSUME_OWNER && !ascended) - adjust_bloodthirst(1 + FLOOR(length(contents) * 0.5, 1)) //Maybe adjust this? + adjust_bloodthirst(0.5 + FLOOR(length(contents) * 0.25, 1)) else - adjust_bloodthirst(1) //don't cool off rapidly once we're at the point where His Grace consumes all. + adjust_bloodthirst(0.5) //don't cool off rapidly once we're at the point where His Grace consumes all. var/mob/living/master = get_atom_on_turf(src, /mob/living) var/list/held_items = list() if(istype(master))