Scorch.lua 476 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Mage/Sorcerer/Scorch.lua
  3. Script Author : neatz09
  4. Script Date : 2020.11.05 02:11:20
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 6 - 11 heat damage on target instantly and every 3 seconds
  9. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  10. SpellDamage(Target, DmgType, MinVal, MaxVal)
  11. end
  12. function tick(Caster, Target, DmgType, MinVal, MaxVal)
  13. SpellDamage(Target, DmgType, MinVal, MaxVal)
  14. end