FreezingWhorl.lua 659 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Mage/Sorcerer/FreezingWhorl.lua
  3. Script Author : neatz09
  4. Script Date : 2020.11.05 02:11:50
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 5 - 10 cold damage on target instantly and every 4 seconds
  9. -- Decreases Mitigation of target vs elemental damage by 133
  10. function cast(Caster, Target, DmgType, MinVal, MaxVal, Mit)
  11. SpellDamage(Target, DmgType, MinVal, MaxVal)
  12. AddSpellBonus(Target, 201, Mit)
  13. end
  14. function tick(Caster, Target, DmgType, MinVal, MaxVal, Mit)
  15. SpellDamage(Target, DmgType, MinVal, MaxVal)
  16. end
  17. function remove(Caster, Target)
  18. RemoveSpellBonus(Target)
  19. end