Made all current wizard + genetic spells a subtype of spell/wizard (Since they use the same action button row)

This commit is contained in:
ZomgPonies
2014-07-23 11:04:07 -04:00
parent 800d5b4b0b
commit 431ab486b3
38 changed files with 247 additions and 274 deletions
+1 -1
View File
@@ -31,7 +31,7 @@
verbs += /mob/dead/observer/proc/dead_tele
// Our new boo spell.
spell_list += new /obj/effect/proc_holder/spell/aoe_turf/boo(src)
spell_list += new /obj/effect/proc_holder/spell/wizard/aoe_turf/boo(src)
can_reenter_corpse = flags & GHOST_CAN_REENTER
started_as_observer = flags & GHOST_IS_OBSERVER
+2 -2
View File
@@ -11,7 +11,7 @@ var/global/list/boo_phrases=list(
"It feels like someone's standing behind you.",
)
/obj/effect/proc_holder/spell/aoe_turf/boo
/obj/effect/proc_holder/spell/wizard/aoe_turf/boo
name = "Boo!"
desc = "Fuck with the living."
@@ -24,7 +24,7 @@ var/global/list/boo_phrases=list(
invocation_type = "none"
range = 1 // Or maybe 3?
/obj/effect/proc_holder/spell/aoe_turf/boo/cast(list/targets)
/obj/effect/proc_holder/spell/wizard/aoe_turf/boo/cast(list/targets)
for(var/turf/T in targets)
for(var/atom/A in T.contents)