VerliensKeenofDespair.lua 674 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Scout/Bard/Dirge/VerliensKeenofDespair.lua
  3. Script Author : theFoof
  4. Script Date : 2013.12.08 09:08:04
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, SlowAmt, HostileChance, DmgChance, DebuffAmt, DebuffType)
  9. Say(Caster, "Slow portion not yet scripted for Verlien's Keen of Despair")
  10. -- Slows target
  11. -- chance to dispel when target receives hostile action
  12. -- chance to dispel when target takes damage
  13. -- Decreases Mitigation of target vs noxious damage
  14. AddSpellBonus(Target, DebuffType, DebuffAmt)
  15. end
  16. function remove(Caster, Target)
  17. RemoveSpellBonus(Target)
  18. end