SylvanTouch.lua 529 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Priest/Druid/SylvanTouch.lua
  3. Script Author : theFoof
  4. Script Date : 2013.12.16
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, HealLow, HealHigh, HoTLow, HoTHigh)
  9. -- Heals target for 119 - 146
  10. -- Heals target for 52 - 64 every 2 seconds
  11. SpellHeal("Heal", HealLow, HealHigh)
  12. end
  13. function tick(Caster, Target, HealLow, HealHigh, HoTLow, HoTHigh)
  14. SpellHeal("Heal", HoTLow, HoTHigh)
  15. end
  16. function remove(Caster, Target)
  17. end