Flametongue.lua 614 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Commoner/Flametongue.lua
  3. Script Author : neatz09
  4. Script Date : 2020.09.26 04:09:42
  5. Script Purpose :
  6. :
  7. --]]
  8. -- On a combat hit this spell may cast Flametongue on target of attack. Lasts for 3.0 seconds. Triggers about 5.0 times per minute.
  9. -- Inflicts 3 - 4 heat damage on target instantly and every second
  10. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  11. SpellDamage(Target, DmgType, MinVal, MaxVal)
  12. end
  13. function tick(Caster, Target, DmgType, MinVal, MaxVal)
  14. SpellDamage(Target, DmgType, MinVal, MaxVal)
  15. end