Bleed.lua 652 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : Spells/Scout/Predator/Bleed.lua
  3. Script Author : neatz09
  4. Script Date : 2020.11.04 12:11:57
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 4 - 6 melee damage on target
  9. -- Inflicts 8 - 14 piercing damage on target instantly and every 4 seconds
  10. -- If facing target
  11. function cast(Caster, Target, DmgType, MinVal, MaxVal, TickType, TickMin, TickMax)
  12. Say(Caster, "Facing Target not implemented")
  13. SpellDamage(Target, DmgType, MinVal, MaxVal)
  14. end
  15. function tick(Caster, Target, DmgType, MinVal, MaxVal, TickType, TickMin, TickMax)
  16. SpellDamage(Target, TickType, TickMin, TickMax)
  17. end