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))