vujuattack.lua 204 B

12345678
  1. local VujuAttack = extend(Spell)
  2. function VujuAttack:activate()
  3. self.unit:attack({target = self.target, damage = self.unit.damage, noparticles = true})
  4. ctx.spells:remove(self)
  5. end
  6. return VujuAttack