GraveGaze.lua 592 B

12345678910111213141516171819202122
  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. -- Info from spell_display_effects (remove from script when done)
  9. -- Stuns target
  10. -- Epic targets gain an immunity to Stun effects of 7.5 seconds and duration is reduced to 0.8 seconds.
  11. -- Resistibility increases against targets higher than level 29.
  12. function cast(Caster, Target)
  13. AddControlEffect(Target, 4)
  14. end
  15. function remove(Caster, Target)
  16. RemoveControlEffect(Target, 4)
  17. end