StickyWebbing.lua 614 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Traditions/StickyWebbing.lua
  3. Script Author : neatz09
  4. Script Date : 2020.08.18 01:08:01
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Dazes targets in Area of Effect
  10. -- Epic targets gain an immunity to Daze effects of 9.0 seconds and duration is reduced to 1.0 second.
  11. -- Resistibility increases against targets higher than level 29.
  12. function cast(Caster, Target)
  13. AddControlEffect(Target, 3)
  14. end
  15. function remove(Caster, Target)
  16. RemoveControlEffect(Target, 3)
  17. end