mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4654 316c924e-a436-60f5-8080-3fe189b3f50e
13 lines
320 B
Plaintext
13 lines
320 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
|
|
|
|
/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 |