1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : Spells/Scout/Ensnare.lua
- Script Author : John Adams
- Script Date : 2013.08.11 02:08:13
- Script Purpose :
- :
- --]]
- function cast(Caster, Target)
- -- code to cast the spell
- Say(Caster, "Whoops! Guess this is not implemented yet!")
- -- Info from spell_display_effects (remove from script when done)
- -- Applies Snare. Lasts for 24.0 seconds.
- -- Slows target by 28.6%
- -- 5% chance to dispel when target receives hostile action
- -- 5% chance to dispel when target takes damage
- -- Decreases Mitigation of target vs arcane damage by 214
- end
- function tick(Caster, Target)
- -- code to process each call_frequency (tick) set in spell_tiers
- end
- function remove(Caster, Target)
- -- code to remove the spell
- end
|