12345678910111213141516 |
- --[[
- Script Name : Spells/AA/ShakeOff.lua
- Script Author : neatz09
- Script Date : 2020.12.16 03:12:31
- Script Purpose :
- :
- --]]
- -- Increases the caster's effectiveness of worn armor vs physical damage by 2%
- function cast(Caster, Target, BonusAmt)
- AddSpellBonus(Target, 678, BonusAmt)
- end
- function remove(Caster, Target)
- RemoveSpellBonus(Target)
- end
|