Bloodbath.lua 654 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/Fighter/Warrior/Berserker/Bloodbath.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.17 12:10:25
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Applies Knockdown on termination. Lasts for 1.5 seconds.
  9. -- Throws target back
  10. -- Blurs vision of target
  11. -- Stuns target
  12. -- Does not affect Epic targets
  13. -- Inflicts 17 - 51 melee damage on targets in Area of Effect
  14. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  15. SpellDamage(Target, DmgType, MinVal, MaxVal)
  16. end
  17. function remove(Caster, Target)
  18. Tier = GetSpellTier()
  19. CastSpell(Target, 5001, Tier, Caster)
  20. end