Stupefy.lua 555 B

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