GreyWindSubspell.lua 517 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : Spells/Priest/Shaman/GreyWindSubspell.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.03.16 02:03:37
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. SetSpellSnareValue(Target, 0.67)
  10. AddControlEffect(Target, 11)
  11. AddProc(Target, 15, 5)
  12. end
  13. function proc(Caster, Target, Type)
  14. if Type == 15 then
  15. CancelSpell()
  16. end
  17. end
  18. function remove(Caster, Target)
  19. RemoveControlEffect(Target, 11)
  20. end