PureAwe.lua 765 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/Coercer/PureAwe.lua
  3. Script Author : neatz09
  4. Script Date : 2020.05.09 06:05:13
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Mesmerizes target encounter
  10. -- Prevents AOE (except when direct)
  11. -- Dispelled when target takes damage
  12. -- Epic targets gain an immunity to Mesmerize effects of 27.0 seconds and duration is reduced to 3.0 seconds.
  13. -- Resistibility increases against targets higher than level 29.
  14. function cast(Caster, Target)
  15. AddControlEffect(Target, 1)
  16. Say(Caster, "Resistability and immunity not implemented.")
  17. end
  18. function remove(Caster, Target)
  19. RemoveControlEffect(Target, 1)
  20. end