GraveGaze.lua 525 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Traditions/GraveGaze.lua
  3. Script Author : neatz09
  4. Script Date : 2020.08.18 01:08:30
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Stuns target
  9. -- Epic targets gain an immunity to Stun effects of 7.5 seconds and duration is reduced to 0.8 seconds.
  10. -- Resistibility increases against targets higher than level 29.
  11. function cast(Caster, Target)
  12. AddControlEffect(Target, 4)
  13. end
  14. function remove(Caster, Target)
  15. RemoveControlEffect(Target, 4)
  16. end