WrathofVelArek.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : Spells/Fighter/Warrior/Guardian/WrathofVelArek.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 02:08:29
  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. -- On a melee hit this spell may cast Shielding of Vel`Arek on caster. Lasts for 10.0 seconds. Triggers about 1.8 times per minute.
  13. -- Makes caster immune to Fear effects
  14. -- Makes caster immune to Root effects
  15. -- Makes caster immune to Stun effects
  16. -- Makes caster immune to Daze effects
  17. -- Makes caster immune to Stifle effects
  18. -- Cannot be modified except by direct means
  19. -- On a melee hit this spell may cast Wrath of the Warrior on target of attack. Lasts for 12.0 seconds. Triggers about 2.4 times per minute.
  20. -- Inflicts 635 - 953 slashing damage on target
  21. -- Reduces physical damage done to caster by 5%
  22. -- Cannot be modified except by direct means
  23. -- Caster is immune to riposte damage.
  24. -- Cannot be modified except by direct means
  25. end
  26. function tick(Caster, Target)
  27. -- code to process each call_frequency (tick) set in spell_tiers
  28. end
  29. function remove(Caster, Target)
  30. -- code to remove the spell
  31. end