SpinechillerBlood.lua 555 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : Spells/Scout/Animist/Beastlord/SpinechillerBlood.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.12 02:10:27
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 7 - 12 poison damage on target
  9. function cast(Caster, Target, DmgType, MinVal, MaxVal, DotType, MinVal2, MaxVal2)
  10. SpellDamage(Target, DmgType, MinVal, MaxVal)
  11. end
  12. function tick(Caster, Target)
  13. -- Inflicts 2 - 3 poison damage on target instantly and every 4 seconds
  14. SpellDamage(Target, DotType, MinVal2, MaxVal2)
  15. end