ShowerofDaggers.lua 560 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Commoner/ShowerofDaggers.lua
  3. Script Author : neatz09
  4. Script Date : 2020.04.12 11:04:09
  5. Script Purpose :
  6. :
  7. --]]
  8. -- On a combat hit this spell may cast Daggers on target of attack. Triggers about 5.0 per minute.
  9. -- inflicts x - y damage based on character level
  10. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  11. AddProc(Target, 3, 5)
  12. end
  13. function proc(Caster, Target, Type, DmgType, MinVal, MaxVal)
  14. ProcDamage(Caster, Target, "Daggers", DmgType, MinVal, MaxVal)
  15. end