Bewilderment.lua 539 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/Illusionist/Bewilderment.lua
  3. Script Author : theFoof
  4. Script Date : 2014.3.1
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. -- Stuns target encounter
  10. -- Epic targets gain an immunity to Stun effects of 8.3 seconds and duration is reduced to 0.9 seconds.
  11. -- Resistibility increases against targets higher than level 29.
  12. AddControlEffect(Target, 4)
  13. end
  14. function remove(Caster, Target)
  15. RemoveControlEffect(Target, 4)
  16. end