1234567891011121314151617 |
- --[[
- Script Name : Spells/Traits/OggokianDurability.lua
- Script Author : neatz09
- Script Date : 2020.12.18 01:12:47
- Script Purpose :
- :
- --]]
- -- Increases the durability gain by 2 every round.
- function cast(Caster, Target, BonusAmt)
- AddSpellBonus(Target, 801, BonusAmt)
- end
- function remove(Caster, Target)
- RemoveSpellBonus(Target)
- end
|