SpellbladesCounter.lua 510 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/AA/SpellbladesCounter.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.11 06:12:49
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Interrupts target
  9. -- Inflicts 249 - 415 melee damage on target
  10. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  11. Say(Caster, "This spell cannot be parried, riposted, blocked, or deflected. if you see this happen, bug report it.")
  12. Interrupt(Caster, Target)
  13. SpellDamage(Target, DmgType, MinVal, MaxVal)
  14. end