Earthquake.lua 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Conjuror/Earthquake.lua
  3. Script Author : Jabantiz
  4. Script Date : 2014.03.12 06:03:26
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  9. -- Inflicts 92 - 276 magic damage on targets in Area of Effect
  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. RemoveControlEffect(Target, 4)
  23. BlurVision(Target, 1.0)
  24. AddSpellTimer(1500, "RemoveKnockback")
  25. end
  26. end
  27. function RemoveKnockback(Caster, Target)
  28. RemoveControlEffect(Target, 4)
  29. BlurVision(Target, 0.0)
  30. end