Bombardment.lua 445 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/AA/Bombardment.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.15 05:12:41
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Caster has a 1.0% chance of having one of their weapons' auto-attack strike the target multiple times.
  9. function cast(Caster, Target, BonusAmt)
  10. AddSpellBonus(Target, 647, BonusAmt)
  11. end
  12. function remove(Caster, Target)
  13. RemoveSpellBonus(Target)
  14. end