box that mf up

This commit is contained in:
Hatterhat
2022-10-04 14:14:04 -05:00
parent 3f04b95ba9
commit 38bd037b66
3 changed files with 93 additions and 9 deletions
+11 -5
View File
@@ -162,7 +162,7 @@
animate(filter, radius = 32, time = 15, size = 0, loop = -1)
/datum/status_effect/grouped/stasis/proc/InterruptBiologicalLife()
return COMPONENT_INTERRUPT_LIFE_BIOLOGICAL
return COMPONENT_INTERRUPT_LIFE_BIOLOGICAL
/datum/status_effect/grouped/stasis/tick()
update_time_of_death()
@@ -1186,13 +1186,19 @@
/datum/status_effect/cgau_conc
id = "cgau_conc"
examine_text = "<span class='warning'>SUBJECTPRONOUN rocks from side to side, confused.</span>"
examine_text = "<span class='warning'>SUBJECTPRONOUN sways from side to side hesitantly!</span>"
duration = 5 SECONDS
/datum/status_effect/cgau_conc/on_creation(mob/living/new_owner, ...)
/datum/status_effect/cgau_conc/on_apply()
. = ..()
new_owner.add_movespeed_modifier(/datum/movespeed_modifier/gauntlet_concussion)
owner.add_movespeed_modifier(/datum/movespeed_modifier/gauntlet_concussion)
if(ishostile(owner))
var/mob/living/simple_animal/hostile/simple_owner = owner
simple_owner.ranged_cooldown_time *= 2.5
/datum/status_effect/cgau_conc/on_remove()
owner.remove_movespeed_modifier(/datum/movespeed_modifier/gauntlet_concussion)
. = ..()
owner.remove_movespeed_modifier(/datum/movespeed_modifier/gauntlet_concussion)
if(ishostile(owner))
var/mob/living/simple_animal/hostile/simple_owner = owner
simple_owner.ranged_cooldown_time /= 2.5