FeralTenacitySubSpell.lua 609 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : Spells/Commoner/FeralTenacitySubSpell.lua
  3. Script Author : neatz09
  4. Script Date : 2020.10.27 11:10:55
  5. Script Purpose : Subspell for Feral Tenacity
  6. :
  7. --]]
  8. -- Heals target for 256
  9. -- Heals target for 64 every 2 seconds
  10. -- Increases AGI of target by 28.6
  11. function cast(Caster, Target, Healz, Tick, Stat)
  12. SpellHeal("Heal", Healz)
  13. AddSpellBonus(Target, 2, Stat)
  14. end
  15. function tick(Caster, Target, Healz, Tick, Stat)
  16. SpellHeal("Heal", Tick)
  17. end
  18. function remove(Caster, Target)
  19. RemoveSpellBonus(Target)
  20. end