Brainburst.lua 713 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/Illusionist/Brainburst.lua
  3. Script Author : theFoof
  4. Script Date : 2014.3.1
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DDType, DDLow, DDHigh, dotType, dotLow, dotHigh)
  9. -- Applies Migraine on termination.
  10. -- Inflicts 13 - 17 mental damage on target
  11. -- Inflicts 6 - 7 mental damage on target instantly and every 6 seconds
  12. --NOTE: Need to allow spells to be irresistible
  13. SpellDamage(Target, dotType, dotLow, dotHigh)
  14. end
  15. function tick(Caster, Target, DDType, DDLow, DDHigh, dotType, dotLow, dotHigh)
  16. SpellDamage(Target, DDType, DDLow, DDHigh)
  17. end
  18. function remove(Caster, Target)
  19. end