123456789101112131415161718 |
- --[[
- Script Name : Spells/Scout/Rogue/Swashbuckler/Hurricane.lua
- Script Author : neatz09
- Script Date : 2020.09.27 10:09:10
- Script Purpose :
- :
- --]]
- -- Info from spell_display_effects (remove from script when done)
- -- Caster has a 28.1% chance of having one of their weapons' auto-attack affect multiple targets they are facing, who are within range of that weapon.
- function cast(Caster, Target, BonusAmt)
- AddSpellBonus(Target, 639, BonusAmt)
- end
- function remove(Caster, Target)
- RemoveSpellBonus(Target)
- end
|