ArcofFlame.lua 574 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Traditions/ArcofFlame.lua
  3. Script Author : neatz09
  4. Script Date : 2021.07.31 12:07:41
  5. Script Purpose :
  6. :
  7. --]]
  8. --[[ Info from spell_display_effects (remove from script when done)
  9. *Inflicts 1 heat damage on targets in Area of Effect instantly and every 3 seconds
  10. --]]
  11. function cast(Caster, Target, DoTType, MinVal, MaxVal)
  12. SpellDamage(Target, DoTType, MinVal, MaxVal)
  13. end
  14. function tick(Caster, Target, DoTType, MinVal, MaxVal)
  15. SpellDamage(Target, DoTType, MinVal, MaxVal)
  16. end