From b5b78b7205a29e4652c56f31b283202cc99bfb38 Mon Sep 17 00:00:00 2001 From: Coolrune206 <71326864+Coolrune206@users.noreply.github.com> Date: Thu, 13 Feb 2025 11:45:32 +1000 Subject: [PATCH] Reduces Juggernaut laser resistance (#28290) * reduces juggernaut laser resistance * documentation --- code/modules/mob/living/simple_animal/constructs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/constructs.dm b/code/modules/mob/living/simple_animal/constructs.dm index 32838493cf2..a5a0469ae27 100644 --- a/code/modules/mob/living/simple_animal/constructs.dm +++ b/code/modules/mob/living/simple_animal/constructs.dm @@ -141,7 +141,7 @@ /mob/living/simple_animal/hostile/construct/armoured/bullet_act(obj/item/projectile/P) if(P.is_reflectable(REFLECTABILITY_ENERGY)) if(P.damage_type == BRUTE || P.damage_type == BURN) - adjustBruteLoss(P.damage * 0.6) // 21 hit with security laser gun + adjustBruteLoss(P.damage * 0.8) // 16 hit with security laser gun P.on_hit(src) return FALSE return ..()