HolyStrike.lua 532 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Fighter/Crusader/Paladin/HolyStrike.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.08 07:10:08
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 112 - 186 divine damage on target
  9. function cast(Caster, Target, DmgType, MinVal, MaxVal, DotType, DotMin, DotMax)
  10. SpellDamage(Target, DmgType, MinVal, MaxVal)
  11. end
  12. -- Inflicts 45 - 75 divine damage on target every 4 seconds
  13. function tick(Caster, Target)
  14. SpellDamage(Target, DotType, DotMin, DotMax)
  15. end