EmpathicAura.lua 426 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/AA/EmpathicAura.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.11 06:12:57
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Improves heal amount by 0.8%.
  9. function cast(Caster, Target, BonusAmt)
  10. AddSpellBonus(Target, 701, BonusAmt)
  11. Say(Caster, "Using stat 701... could be wrong")
  12. end
  13. function remove(Caster, Target)
  14. RemoveSpellBonus(Target)
  15. end