mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 16:18:01 +01:00
Fixes boosted lycans having TOTAL slowdown immunity (#5652)
## About The Pull Request Title. I didnt know this other proc existed. ## Why It's Good For The Game Bugs bad. ## Proof Of Testing <details> <summary>Screenshots/Videos</summary> </details> ## Changelog 🆑 fix: Boosted lycans are now only immune to damage slowdown /🆑
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user