Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Update abilities_king.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 committed Jul 1, 2024
1 parent 2f662bb commit b8c6ab9
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,13 @@
addtimer(CALLBACK(src, PROC_REF(end_effects), humans), PETRIFY_DURATION)
add_cooldown()
succeed_activate()

/datum/action/ability/activable/xeno/nightfall
desc = "Shut down electrical lights for 10 seconds and extinguish flares in nearby range."

/datum/action/ability/activable/xeno/nightfall/use_ability()
. = ..()
for(var/obj/item/explosive/grenade/flare/flare in range(range, owner))
if(!flare.active)
continue
flare.turn_off()

0 comments on commit b8c6ab9

Please sign in to comment.