Saturday, 31 January 2026 01:00:43

This commit is contained in:
2026-01-31 01:00:45 -05:00
parent d9d33f9758
commit 672e91d381
38 changed files with 374 additions and 424 deletions

View File

@@ -15,8 +15,8 @@ public partial class Boss : Enemy
for (int i = 0; i < _dragons.Count; i++)
{
_dragons[i]._owner = this;
_dragons[i]._number = _board._cells[i]._address;
_board._cells[i]._tenant = _dragons[i];
_dragons[i]._number = _board._shields[i]._address;
_board._shields[i]._tenant = _dragons[i];
}
}
@@ -26,9 +26,9 @@ public partial class Boss : Enemy
_dragons.ForEach(d=>d.PassPlayer(PLAYER));
}
public override void ClickCell(Cell CLICKED_CELL)
public override void ClickShield(Shield CLICKED_SHIELD)
{
_playerOpponent.Challenge(CLICKED_CELL._tenant);
_playerOpponent.Challenge(CLICKED_SHIELD._tenant);
}
}