From 013319d7a4651d1708280f556e39c2f03839426a Mon Sep 17 00:00:00 2001 From: Maks Jopek Date: Sun, 25 Apr 2021 12:07:36 +0200 Subject: Almost going in a circle --- backend/ts/gameBoard.ts | 80 ++++++++++++++++++++++++------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) (limited to 'backend/ts/gameBoard.ts') diff --git a/backend/ts/gameBoard.ts b/backend/ts/gameBoard.ts index 89a8902..314c874 100644 --- a/backend/ts/gameBoard.ts +++ b/backend/ts/gameBoard.ts @@ -1,46 +1,46 @@ import { Color, GameBoard } from '../../helpers/helpersBack'; export const gameBoard: GameBoard = { map: [ - { y: 0, x: 4, chequers: [], start: Color.red }, - { y: 1, x: 4, chequers: [], start: -1 }, - { y: 2, x: 4, chequers: [], start: -1 }, - { y: 3, x: 4, chequers: [], start: -1 }, - { y: 4, x: 4, chequers: [], start: -1 }, - { y: 4, x: 3, chequers: [], start: -1 }, - { y: 4, x: 2, chequers: [], start: -1 }, - { y: 4, x: 1, chequers: [], start: -1 }, - { y: 4, x: 0, chequers: [], start: -1 }, - { y: 5, x: 0, chequers: [], start: -1 }, - { y: 6, x: 0, chequers: [], start: Color.blue }, - { y: 6, x: 1, chequers: [], start: -1 }, - { y: 6, x: 2, chequers: [], start: -1 }, - { y: 6, x: 3, chequers: [], start: -1 }, - { y: 6, x: 4, chequers: [], start: -1 }, - { y: 7, x: 4, chequers: [], start: -1 }, - { y: 8, x: 4, chequers: [], start: -1 }, - { y: 9, x: 4, chequers: [], start: -1 }, - { y: 10, x: 4, chequers: [], start: -1 }, - { y: 10, x: 5, chequers: [], start: -1 }, - { y: 10, x: 6, chequers: [], start: Color.green }, - { y: 9, x: 6, chequers: [], start: -1 }, - { y: 8, x: 6, chequers: [], start: -1 }, - { y: 7, x: 6, chequers: [], start: -1 }, - { y: 6, x: 6, chequers: [], start: -1 }, - { y: 6, x: 7, chequers: [], start: -1 }, - { y: 6, x: 8, chequers: [], start: -1 }, - { y: 6, x: 9, chequers: [], start: -1 }, - { y: 6, x: 10, chequers: [], start: -1 }, - { y: 5, x: 10, chequers: [], start: -1 }, - { y: 4, x: 10, chequers: [], start: Color.yellow }, - { y: 4, x: 9, chequers: [], start: -1 }, - { y: 4, x: 8, chequers: [], start: -1 }, - { y: 4, x: 7, chequers: [], start: -1 }, - { y: 4, x: 6, chequers: [], start: -1 }, - { y: 3, x: 6, chequers: [], start: -1 }, - { y: 2, x: 6, chequers: [], start: -1 }, - { y: 1, x: 6, chequers: [], start: -1 }, - { y: 0, x: 6, chequers: [], start: -1 }, - { y: 0, x: 5, chequers: [], start: -1 }, + { x: 0, y: 4, chequers: [], start: Color.red }, + { x: 1, y: 4, chequers: [], start: -1 }, + { x: 2, y: 4, chequers: [], start: -1 }, + { x: 3, y: 4, chequers: [], start: -1 }, + { x: 4, y: 4, chequers: [], start: -1 }, + { x: 4, y: 3, chequers: [], start: -1 }, + { x: 4, y: 2, chequers: [], start: -1 }, + { x: 4, y: 1, chequers: [], start: -1 }, + { x: 4, y: 0, chequers: [], start: -1 }, + { x: 5, y: 0, chequers: [], start: -1 }, + { x: 6, y: 0, chequers: [], start: Color.blue }, + { x: 6, y: 1, chequers: [], start: -1 }, + { x: 6, y: 2, chequers: [], start: -1 }, + { x: 6, y: 3, chequers: [], start: -1 }, + { x: 6, y: 4, chequers: [], start: -1 }, + { x: 7, y: 4, chequers: [], start: -1 }, + { x: 8, y: 4, chequers: [], start: -1 }, + { x: 9, y: 4, chequers: [], start: -1 }, + { x: 10, y: 4, chequers: [], start: -1 }, + { x: 10, y: 5, chequers: [], start: -1 }, + { x: 10, y: 6, chequers: [], start: Color.green }, + { x: 9, y: 6, chequers: [], start: -1 }, + { x: 8, y: 6, chequers: [], start: -1 }, + { x: 7, y: 6, chequers: [], start: -1 }, + { x: 6, y: 6, chequers: [], start: -1 }, + { x: 6, y: 7, chequers: [], start: -1 }, + { x: 6, y: 8, chequers: [], start: -1 }, + { x: 6, y: 9, chequers: [], start: -1 }, + { x: 6, y: 10, chequers: [], start: -1 }, + { x: 5, y: 10, chequers: [], start: -1 }, + { x: 4, y: 10, chequers: [], start: Color.yellow }, + { x: 4, y: 9, chequers: [], start: -1 }, + { x: 4, y: 8, chequers: [], start: -1 }, + { x: 4, y: 7, chequers: [], start: -1 }, + { x: 4, y: 6, chequers: [], start: -1 }, + { x: 3, y: 6, chequers: [], start: -1 }, + { x: 2, y: 6, chequers: [], start: -1 }, + { x: 1, y: 6, chequers: [], start: -1 }, + { x: 0, y: 6, chequers: [], start: -1 }, + { x: 0, y: 5, chequers: [], start: -1 }, ], // @ts-ignore bases: { -- cgit v1.3.1