DragoonsCyclone.lua 559 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/DragoonsCyclone.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.10 02:12:44
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Caster has a 4.0% chance of having one of their weapons' auto-attack affect multiple targets they are facing, who are within range of that weapon.
  10. function cast(Caster, Target, BonusAmt)
  11. AddSpellBonus(Target, 639, BonusAmt)
  12. end
  13. function remove(Caster, Target)
  14. RemoveSpellBonus(Target)
  15. end