Bladedance.lua 355 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/AA/Bladedance.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.10 05:12:57
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Prevents AOE (except when direct)
  9. function cast(Caster, Target)
  10. AddImmunitySpell(7, Target)
  11. end
  12. function remove(Caster, Target)
  13. RemoveImmunitySpell(7, Target)
  14. end