1234567891011121314151617 |
- --[[
- Script Name : Spells/AA/AncientShield.lua
- Script Author : neatz09
- Script Date : 2020.12.10 07:12:55
- 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
|