VenomousRunes.lua 627 B

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