DepressingChant.lua 689 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Scout/Bard/Troubadour/DepressingChant.lua
  3. Script Author : Zcoretri
  4. Script Date : 17.March.2014
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, SlowAmt, HostileChance, DmgChance, Mitigation)
  9. -- Applies Snare. Lasts for 24.0 seconds.
  10. -- Slows target
  11. -- chance to dispel when target receives hostile action
  12. -- chance to dispel when target takes damage
  13. Say(Caster, "Slow portion is not scripted yet!")
  14. -- Decreases Mitigation of target vs arcane damage
  15. AddSpellBonus(Target, 203, Mitigation)
  16. end
  17. function remove(Caster, Target)
  18. RemoveSpellBonus(Target)
  19. end