ChaosAnthem.lua 630 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Scout/Bard/Troubador/ChaosAnthem.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.12 10:10:27
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DmgType, MinVal, Stat)
  9. -- Inflicts 120 mental damage on target encounter instantly and every 6 seconds
  10. SpellDamage(Target, DmgType, MinVal)
  11. -- Decreases WIS of target encounter by 72.3
  12. AddSpellBonus(Target, 3, Stat)
  13. end
  14. function tick(Caster, Target, Dmgtype, MinVal, Stat)
  15. SpellDamage(Target, DmgType, MinVal)
  16. end
  17. function remove(Caster, Target)
  18. RemoveSpellBonus(Target)
  19. end