Photosynthesis.lua 471 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : Spells/Priest/Druid/Warden/Photosynthesis.lua
  3. Script Author : theFoof
  4. Script Date : 2013.12.10 11:12:20
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Heals target instantly and every 2 seconds
  9. function cast(Caster, Target, HealLow, HealHigh)
  10. SpellHeal("Heal", HealLow, HealHigh)
  11. end
  12. function tick(Caster, Target, HealLow, HealHigh)
  13. SpellHeal("Heal", HealLow, HealHigh)
  14. end
  15. function remove()
  16. end