diff --git a/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm b/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm index 4231d192135..a342fa326ee 100644 --- a/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm +++ b/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm @@ -104,13 +104,13 @@ ADD_TRAIT(gainer, TRAIT_BATON_RESISTANCE, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_HARDLY_WOUNDED, SPECIES_TRAIT) - ADD_TRAIT(gainer, TRAIT_IGNORESLOWDOWN, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_FEARLESS, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_BRAWLING_KNOCKDOWN_BLOCKED, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_NO_STAGGER, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_NO_THROW_HITPUSH, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_MARTIAL_ARTS_UNUSABLE, SPECIES_TRAIT) + gainer.add_movespeed_mod_immunities(type, /datum/movespeed_modifier/damage_slowdown) gainer.AddComponent( \ /datum/component/regenerator, \ regeneration_delay = 5 SECONDS, \ @@ -124,13 +124,13 @@ /datum/species/lycan/proc/handle_gaian_physique_loss(mob/living/carbon/human/loser) REMOVE_TRAIT(loser, TRAIT_BATON_RESISTANCE, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_HARDLY_WOUNDED, SPECIES_TRAIT) - REMOVE_TRAIT(loser, TRAIT_IGNORESLOWDOWN, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_FEARLESS, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_BRAWLING_KNOCKDOWN_BLOCKED, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_NO_STAGGER, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_NO_THROW_HITPUSH, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_MARTIAL_ARTS_UNUSABLE, SPECIES_TRAIT) + loser.remove_movespeed_mod_immunities(type, /datum/movespeed_modifier/damage_slowdown) qdel(loser.GetComponent(/datum/component/regenerator)) loser.physiology.stamina_mod *= 4