BlockingExpertise.lua 483 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells\Traditions\Combat\BlockingExpertise.lua
  3. Script Author : Zcoretri
  4. Script Date : 2013.03.26
  5. Script Notes : Barbarian - Increases Deflection by 2.0 and Shield Effectiveness by 2%
  6. --]]
  7. function cast(Caster, Target, Deflection, Shield)
  8. AddSkillBonus(Target, 3850377186, Deflection)
  9. --AddSpellBonus(Target,,Shield)
  10. end
  11. function remove(Caster, Target, Deflection, Shield)
  12. RemoveSkillBonus(Target)
  13. --RemoveSpellBonus(Target)
  14. end