FlashofInsight.lua 384 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/Traits/FlashofInsight.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.17 04:12:08
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. MaxPower = GetMaxPower(Caster)
  10. AddSpellBonus(Caster, 501, math.ceil(MaxPower * 0.03))
  11. end
  12. function remove (Caster, Target)
  13. RemoveSpellBonus()
  14. end