SylvanBloom.lua 502 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Priest/Druid/Warden/SylvanBloom.lua
  3. Script Author : theFoof
  4. Script Date : 2013.12.09 11:12:13
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Heals target
  9. -- Heals target 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