NimblePaws.lua 488 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Traits/NimblePaws.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.18 03:12:11
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases Disruption and Defense of caster by 5.0
  9. function cast(Caster, Target, SkillAmt)
  10. AddSkillBonus(Target, GetSkillIDByName("Disruption"), SkillAmt)
  11. AddSkillBonus(Target, GetSkillIDByName("Defense"), SkillAmt)
  12. end
  13. function remove(Caster, Target)
  14. RemoveSkillBonus(Target)
  15. end