Merge pull request #8265 from Trilbyspaceclone/patch-103

Reblances goliath stun.
This commit is contained in:
kevinz000
2019-04-22 21:38:33 -07:00
committed by GitHub
@@ -187,12 +187,12 @@
var/mob/living/carbon/C = L var/mob/living/carbon/C = L
var/obj/item/clothing/S = C.get_item_by_slot(SLOT_WEAR_SUIT) var/obj/item/clothing/S = C.get_item_by_slot(SLOT_WEAR_SUIT)
if(S && S.resistance_flags & GOLIATH_RESISTANCE) if(S && S.resistance_flags & GOLIATH_RESISTANCE)
L.Stun(75) L.Stun(25)
else if(S && S.resistance_flags & GOLIATH_WEAKNESS) else if(S && S.resistance_flags & GOLIATH_WEAKNESS)
L.Stun(125) L.Stun(115)
else else
L.Stun(100) L.Stun(75)
L.adjustBruteLoss(rand(10,15)) L.adjustBruteLoss(rand(15,20)) // Less stun more harm
latched = TRUE latched = TRUE
if(!latched) if(!latched)
retract() retract()