12345678910111213141516171819 |
- --[[
- Script Name : Spells/Traits/DLeresFightingStance.lua
- Script Author : neatz09
- Script Date : 2020.12.18 02:12:22
- Script Purpose :
- :
- --]]
- -- Increases Crushing and Slashing of caster by 5.0
- function cast(Caster, Target, SkillAmt)
- AddSkillBonus(Target, GetSkillIDByName("Crushing"), SkillAmt)
- AddSkillBonus(Target, GetSkillIDByName("Slashing"), SkillAmt)
- end
- function remove(Caster, Target)
- RemoveSkillBonus(Target)
- end
|