mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4654 316c924e-a436-60f5-8080-3fe189b3f50e
15 lines
374 B
Plaintext
15 lines
374 B
Plaintext
/obj/effect/proc_holder/spell/targeted/explosion
|
|
name = "Explosion"
|
|
desc = "This spell explodes an area."
|
|
|
|
var/ex_severe = 1
|
|
var/ex_heavy = 2
|
|
var/ex_light = 3
|
|
var/ex_flash = 4
|
|
|
|
/obj/effect/proc_holder/spell/targeted/explosion/cast(list/targets)
|
|
|
|
for(var/mob/living/target in targets)
|
|
explosion(target.loc,ex_severe,ex_heavy,ex_light,ex_flash)
|
|
|
|
return |