ShakeOff.lua 410 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/AA/ShakeOff.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.16 03:12:31
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases the caster's effectiveness of worn armor vs physical damage by 2%
  9. function cast(Caster, Target, BonusAmt)
  10. AddSpellBonus(Target, 678, BonusAmt)
  11. end
  12. function remove(Caster, Target)
  13. RemoveSpellBonus(Target)
  14. end