From 727a3f998657929a7c8d6c1d2e5baec3c1ed891a Mon Sep 17 00:00:00 2001 From: Orotheim <81803907+Orotheim@users.noreply.github.com> Date: Mon, 12 Aug 2024 20:32:05 +0100 Subject: [PATCH] Rebalances Size Evens out differences between micro's, normal height and macro players. --- hyperstation/code/modules/resize/resizing.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hyperstation/code/modules/resize/resizing.dm b/hyperstation/code/modules/resize/resizing.dm index a1c09242..5aa4d59e 100644 --- a/hyperstation/code/modules/resize/resizing.dm +++ b/hyperstation/code/modules/resize/resizing.dm @@ -49,9 +49,9 @@ mob/living/get_effective_size() src.update_mobsize() //Going to change the health and speed values too src.remove_movespeed_modifier(MOVESPEED_ID_SIZE) - src.add_movespeed_modifier(MOVESPEED_ID_SIZE, multiplicative_slowdown = (abs(size_multiplier - 1) * 0.4 )) - var/healthmod_old = ((previous_size * 75) - 75) //Get the old value to see what we must change. - var/healthmod_new = ((size_multiplier * 75) - 75) //A size of one would be zero. Big boys get health, small ones lose health. + src.add_movespeed_modifier(MOVESPEED_ID_SIZE, multiplicative_slowdown = (abs(size_multiplier - 1) * 0.3 )) //GS Change, reduces speed penalties for size from *.4 to *.3 + var/healthmod_old = ((previous_size * 35) - 75) //Get the old value to see what we must change. + var/healthmod_new = ((size_multiplier * 35) - 75) //A size of one would be zero. Big boys get health, small ones lose health. //GS Change, reduces health penalties/buffs for size from *75 to *35 var/healthchange = healthmod_new - healthmod_old //Get ready to apply the new value, and subtract the old one. (Negative values become positive) src.maxHealth += healthchange src.health += healthchange @@ -241,7 +241,7 @@ mob/living/get_effective_size() //Proc for scaling brute damage on size difference /mob/living/proc/sizediffBruteloss(var/mob/living/tmob) - var/B = (get_effective_size()/tmob.get_effective_size()*3) //macro divided by micro, times 3 + var/B = (get_effective_size()/tmob.get_effective_size()*2) //macro divided by micro, times 3 //GS change, *2 tmob.adjustBruteLoss(B) //final result in brute loss //Proc for changing mob_size to be grabbed for item weight classes