WindsofVelious.lua 747 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Conjuror/WindsofVelious.lua
  3. Script Author : neatz09
  4. Script Date : 2019.11.11 05:11:10
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Interrupts target
  9. -- Inflicts 90 - 111 cold damage on target instantly and every 4 seconds
  10. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  11. Interrupt(Target)
  12. SpellDamage(Target, DmgType, MinVal, MaxVal)
  13. -- Slows target by 75.0%
  14. SetSpeedMultiplier(Target, 0.25)
  15. end
  16. -- Inflicts 90 - 111 cold damage on target instantly and every 4 seconds
  17. function tick(Caster, Target, DmgType, MinVal, MaxVal)
  18. SpellDamage(Target, DmgType, MinVal, MaxVal)
  19. end
  20. function remove(Caster, Target)
  21. SetSpeedMultiplier(Target, 1)
  22. end