From 36ec603a512d89593170ff8bb6e0d097c48fe067 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Tue, 21 Feb 2017 07:53:57 -0800 Subject: [PATCH] Rod form is now half-speed, and has a warning sound --- code/datums/spells/rod_form.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/datums/spells/rod_form.dm b/code/datums/spells/rod_form.dm index 004daf8969e..e51a994b7d2 100644 --- a/code/datums/spells/rod_form.dm +++ b/code/datums/spells/rod_form.dm @@ -11,10 +11,13 @@ invocation_type = "shout" action_icon_state = "immrod" + sound = 'sound/effects/whoosh.ogg' + var/rod_delay = 2 + /obj/effect/proc_holder/spell/targeted/rod_form/cast(list/targets,mob/user = usr) for(var/mob/living/M in targets) var/turf/start = get_turf(M) - var/obj/effect/immovablerod/wizard/W = new(start, get_ranged_target_turf(M, M.dir, (15 + spell_level * 3))) + var/obj/effect/immovablerod/wizard/W = new(start, get_ranged_target_turf(M, M.dir, (15 + spell_level * 3)), rod_delay) W.wizard = M W.max_distance += spell_level * 3 //You travel farther when you upgrade the spell W.start_turf = start