HolyArmor.lua 413 B

123456789101112131415
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Templar/HolyArmor.lua
  3. Script Purpose : Templar Holy Armor spell line
  4. Script Author : theFoof
  5. Script Date : 2014.3.9
  6. --]]
  7. function cast(Caster, Target, HealthAmt, MitAmt)
  8. AddSpellBonus(Target, 200, MitAmt, 11, 21, 31)
  9. AddSpellBonus(Target, 500, HealthAmt, 1)
  10. end
  11. function remove(Caster, Target, HealthAmt, MitAmt)
  12. RemoveSpellBonus(Target)
  13. end