Befuddle.lua 563 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Scout/Rogue/Brigand/Befuddle.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.24 04:10:44
  5. Script Purpose :
  6. :
  7. --]]
  8. -- On a melee hit this spell may cast Baffle on target of attack. Triggers about 4.0 times per minute.
  9. -- Decreases Threat to target by 156
  10. function cast(Caster, Target, Hate)
  11. AddProc(Target, 3, 6.25)
  12. end
  13. function proc(Caster, Target, Type, Hate)
  14. ProcHate(Caster, Target, Hate, "Baffle")
  15. end
  16. function remove(Caster, Target)
  17. RemoveProc(Target)
  18. end