GreaterRegrowth.lua 498 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Priest/Druid/GreaterRegrowth.lua
  3. Script Author : neatz09
  4. Script Date : 2020.01.02 06:01:52
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Heals target for 54 - 66 instantly and every 2 seconds
  10. function cast(Caster, Target, MinVal, MaxVal)
  11. SpellHeal("Heal", MinVal, MaxVal)
  12. end
  13. function tick(Caster, Target, MinVal, MaxVal)
  14. SpellHeal("Heal", MinVal, MaxVal)
  15. end