PenitentKick.lua 806 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : Spells/Fighter/Crusader/Paladin/PenitentKick.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.05 07:12:40
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  9. -- Inflicts 12 - 20 divine damage on target
  10. if MaxVal ~= nil and MinVal < MaxVal then
  11. SpellDamage(Target, DmgType, math.random(MinVal, MaxVal))
  12. else
  13. SpellDamage(Target, DmgType, MinVal)
  14. end
  15. -- Applies Knockdown on termination. Lasts for 1.5 seconds.
  16. -- Throws target back
  17. -- Stuns target
  18. -- Blurs vision of target
  19. -- Does not affect Epic targets
  20. if not IsEpic(Target) then
  21. Knockback(Caster, Target, 1500)
  22. Say(Caster, "Not Implemented: Stun and Vision")
  23. end
  24. end