MercilessStomp.lua 993 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : Spells/Fighter/Brawler/Bruiser/MercilessStomp.lua
  3. Script Author : Jabantiz
  4. Script Date : 2014.03.11 05:03:17
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  9. -- Inflicts 49 - 82 crushing 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. 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. AddControlEffect(Target, 4)
  22. BlurVision(Target, 1.0)
  23. Knockback(Caster, Target, 1500)
  24. AddSpellTimer(1500, "RemoveKnockdown")
  25. end
  26. end
  27. function RemoveKnockdown(Caster, Target)
  28. RemoveControlEffect(Target, 4)
  29. BlurVision(Target, 0.0)
  30. end