NaturesEmbrace.lua 533 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : Spells/Priest/Druid/Warden/NaturesEmbrace.lua
  3. Script Author : theFoof
  4. Script Date : 2013.12.09 11:12:48
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Heals target for X - Y
  9. -- Heals target for A - B every second
  10. function cast(Caster, Target, HealLow, HealHigh, HoTLow, HoTHigh)
  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()
  17. end