NaturesWrath.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : Spells/Priest/Druid/Fury/NaturesWrath.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 07: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. -- Improves the damage of hostile spells by 10% of the fury's wisdom.
  13. -- Improves the fury's heals by 10% of their wisdom.
  14. -- On a hostile spell cast this spell has a 12% chance to cast Nature's Wrath on target of spell. Lasts for 10.0 seconds.
  15. -- On a hit this spell will cast Nature's Soothing on target of attack.
  16. -- Heals target for 379 - 703
  17. -- Inflicts 622 - 933 heat damage on target
  18. -- Cannot be modified except by direct means
  19. -- Cannot be modified except by direct means
  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