Fortissimo.lua 381 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/AA/Fortissimo.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.16 04:12:11
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases DPS of group members (AE) by 1.0
  9. function cast(Caster, Target, BonusAmt)
  10. AddSpellBonus(Target, 629, BonusAmt)
  11. end
  12. function remove(Caster, Target)
  13. RemoveSpellBonus(Target)
  14. end