1234567891011121314151617181920212223 |
- --[[
- Script Name : Spells/Scout/Bard/Troubador/ElementalConcerto.lua
- Script Author : neatz09
- Script Date : 2019.09.23 02:09:01
- Script Purpose :
- :
- --]]
- -- Increases Mitigation of raid and group members (AE) vs elemental damage by 554
- function cast(Caster, Target, BonusAmt)
- AddSpellBonus(Target, 201, MitAmt)
- end
- function remove(Caster, Target, BonusAmt)
- RemoveSpellBonus(Target)
- end
|