mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 23:31:04 +00:00
This had no fucking reason to exist, Shadowling spells are not wizard spells, genetics powers are not wizard spells, ghost Booing is not a wizard spell, etc.
15 lines
350 B
Plaintext
15 lines
350 B
Plaintext
/obj/effect/proc_holder/spell/targeted/emplosion
|
|
name = "Emplosion"
|
|
desc = "This spell emplodes an area."
|
|
|
|
var/emp_heavy = 2
|
|
var/emp_light = 3
|
|
|
|
action_icon_state = "emp"
|
|
|
|
/obj/effect/proc_holder/spell/targeted/emplosion/cast(list/targets)
|
|
|
|
for(var/mob/living/target in targets)
|
|
empulse(target.loc, emp_heavy, emp_light)
|
|
|
|
return |