PledgeofArmament.lua 562 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Fighter/Crusader/PledgeofArmament.lua
  3. Script Author : neatz09
  4. Script Date : 2020.02.24 08:02:11
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases Mitigation of target vs physical damage by 73
  9. -- Decreases Mitigation of caster vs physical damage by 162
  10. function cast(Caster, Target, TgtMit, CastMit)
  11. AddSpellBonus(Target, 200, TgtMit)
  12. AddSpellBonus(Caster, 200, CastMit)
  13. end
  14. function remove(Caster, Target)
  15. RemoveSpellBonus(Target)
  16. RemoveSpellBonus(Caster)
  17. end