HierophanticGenesis.lua 631 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Priest/Druid/Warden/HierophanticGenesis.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.15 05:10:53
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Heals target for 547 - 668 instantly and every 2 seconds
  9. -- Increases power of target by 43 - 52 instantly and every 2 seconds
  10. function cast(Caster, Target, MinHeal, MaxHeal, MinPwr, MaxPwr)
  11. SpellHeal("Heal", MinHeal, MaxHeal)
  12. SpellHeal("Power", MinPwr, MaxPwr)
  13. end
  14. function tick(Caster, Target, MinHeal, MaxHeal, MinPwr, MaxPwr)
  15. SpellHeal("Heal", MinHeal, MaxHeal)
  16. SpellHeal("Power", MinPwr, MaxPwr)
  17. end