FlamesofVelious.lua 596 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Mage/Sorcerer/FlamesofVelious.lua
  3. Script Author : neatz09
  4. Script Date : 2020.09.19 01:09:17
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 190 heat damage on target
  9. -- Inflicts 190 cold damage on target
  10. -- Slows target by 33.3%
  11. function cast(Caster, Target, DmgType, MinVal, DmgType2, MinVal2, SlowAmt)
  12. local Slow = 100 - SlowAmt
  13. SpellDamage(Target, DmgType, MinVal)
  14. SpellDamage(Target, DmgType2, MinVal2)
  15. SetSpeedMultiplier(Target, Slow)
  16. end
  17. function remove(Caster, Target)
  18. SetSpeedMultiplier(Target, 1)
  19. end