PrimalInstincts.lua 748 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Commoner/PrimalInstincts.lua
  3. Script Author : neatz09
  4. Script Date : 2020.09.26 01:09:03
  5. Script Purpose :
  6. :
  7. --]]
  8. -- On a hostile ability cast this spell may cast Primal Instincts on target of spell. Lasts for 6.0 seconds. Triggers about 7.0 times per minute.
  9. -- Inflicts 90 - 109 piercing damage on target
  10. -- Inflicts 45 - 55 piercing damage on target every 3 seconds
  11. function cast(Caster, Target, DmgType, MinVal, MaxVal, TickType, TickMin, TickMax)
  12. SpellDamage(Target, DmgType, MinVal, MaxVal)
  13. end
  14. function tick(Caster, Target, DmgType, MinVal, MaxVal, TickType, TickMin, TickMax)
  15. SpellDamage(Target, TickType, TickMin, TickMax)
  16. end