Cuss.lua 466 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Scout/Rogue/Brigand/Cuss.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.07 03:10:21
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, CureAmt, Hate)
  9. -- Interrupts target
  10. Interrupt(Target)
  11. -- Dispels 115 levels of arcane beneficial effects on target
  12. CureByType(CureAmt, 2, "Cure")
  13. -- Increases Threat to target by 4,720
  14. AddHate(Caster, Target, Hate, 1)
  15. end