AncientWave.lua 484 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/AA/AncientWave.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.15 05:12:44
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Caster has a 2% chance of having one of their weapons' autoattack affect multiple targets they are facing, who are within range of that weapon.
  9. function cast(Caster, Target, BonusAmt)
  10. AddSpellBonus(Target, 639, BonusAmt)
  11. end
  12. function remove(Caster, Target)
  13. RemoveSpellBonus(Target)
  14. end