ThunderingFistsClassic.lua 674 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : Spells/Fighter/Brawler/ThunderingFistsClassic.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.09.07 04:09:28
  5. Script Purpose :
  6. :
  7. --]]
  8. --[[ Info from spell_display_effects (remove from script when done)
  9. While active, this combat art grants the brawler a small chance to briefly stun their target with each melee hit.
  10. --]]
  11. function cast(Caster, Target, Chance)
  12. AddProc(Caster, 3, Chance)
  13. end
  14. function proc(Caster, Target, Type)
  15. if Type == 3 then
  16. CastSpell(Target, 5510, GetSpellTier())
  17. end
  18. end
  19. function remove(Caster, Target)
  20. RemoveProc(Caster)
  21. end