Gloom.lua 655 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/Gloom.lua
  3. Script Author : neatz09
  4. Script Date : 2020.11.03 11:11:44
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 12 - 14 mental damage on target instantly and every 6 seconds
  9. -- Decreases Mitigation of target vs arcane damage by 141
  10. function cast(Caster, Target, DmgType, MinVal, MaxVal, Mit)
  11. SpellDamage(Target, DmgType, MinVal, MaxVal)
  12. AddSpellBonus(Target, 203, Mit)
  13. end
  14. function tick(Caster, Target, DmgType, MinVal, MaxVal, Mit)
  15. SpellDamage(Target, DmgType, MinVal, MaxVal)
  16. end
  17. function remove(Caster, Target)
  18. RemoveSpellBonus(Target)
  19. end