ProficientSwipe.lua 490 B

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