ChromaticShower.lua 881 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/Illusionist/ChromaticShower.lua
  3. Script Author : neatz09
  4. Script Date : 2020.03.06 08:03:04
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 104 - 127 mental damage on target encounter instantly and every second
  9. -- Stifles target encounter
  10. -- Epic targets gain an immunity to Stifle effects of 15.0 seconds and duration is reduced to 1.7 seconds.
  11. -- Resistibility increases against targets higher than level 29.
  12. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  13. Say(Caster, "Epic Spell Abilities not implemented yet.")
  14. SpellDamage(Target, DmgType, MinVal, MaxVal)
  15. AddControlEffect(Target, 2)
  16. end
  17. function tick(Caster, Target, DmgType, MinVal, MaxVal)
  18. SpellDamage(Target, DmgType, MinVal, MaxVal)
  19. end
  20. function remove(Caster, Target)
  21. RemoveControlEffect(Target, 2)
  22. end