Tenacity.lua 418 B

12345678910111213141516
  1. --[[
  2. Script Name : Tenacity.lua
  3. Script Purpose : Inquisitor Tenacity spell line
  4. Script Author : Zcoretri
  5. Script Date : 23.May.2010
  6. Script Notes :
  7. --]]
  8. function cast(Caster, Target, HealthAmt, SkillAmt)
  9. AddSpellBonus(Target, 1, HealthAmt) -- Sta
  10. AddSpellBonus(Target, 641, SkillAmt) -- Multi Attack
  11. end
  12. function remove(Caster, Target, HealthAmt, SkillAmt)
  13. RemoveSpellBonus(Target)
  14. end