RingofIce.lua 957 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : Spells/Mage/Sorcerer/Wizard/RingofIce.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 07:08:59
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. -- code to cast the spell
  10. Say(Caster, "Whoops! Guess this is not implemented yet!")
  11. -- Info from spell_display_effects (remove from script when done)
  12. -- Roots target encounter
  13. -- Applies Icy Grasp on termination. Lasts for 12.0 seconds.
  14. -- Slows target by 34.2%
  15. -- 5% chance to dispel when target receives hostile action
  16. -- 5% chance to dispel when target takes damage
  17. -- 20% chance to dispel when target takes damage
  18. -- Does not affect Epic targets
  19. -- Resistibility increases against targets higher than level 29.
  20. end
  21. function tick(Caster, Target)
  22. -- code to process each call_frequency (tick) set in spell_tiers
  23. end
  24. function remove(Caster, Target)
  25. -- code to remove the spell
  26. end