PhantasmalAwe.lua 707 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/Illusionist/PhantasmalAwe.lua
  3. Script Author : neatz09
  4. Script Date : 2020.05.09 06:05:22
  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. end
  17. function remove(Caster, Target)
  18. RemoveControlEffect(Target, 1)
  19. end