GustofInsight.lua 402 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Commoner/GustofInsight.lua
  3. Script Author : neatz09
  4. Script Date : 2020.04.04 10:04:35
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases power of caster by 2 instantly and every 5 seconds.
  9. function cast(Caster, Target, PwrAmt)
  10. SpellHeal("Power", PwrAmt)
  11. end
  12. function tick(Caster, Target, PwrAmt)
  13. SpellHeal("Power", PwrAmt)
  14. end