kinda working version
This commit is contained in:
		
							
								
								
									
										49
									
								
								src/Board.ts
									
									
									
									
									
								
							
							
						
						
									
										49
									
								
								src/Board.ts
									
									
									
									
									
								
							| @@ -1,3 +1,5 @@ | |||||||
|  | import {resetVar} from "./moooove"; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * return the WebBoard information |  * return the WebBoard information | ||||||
|  */ |  */ | ||||||
| @@ -20,7 +22,7 @@ function resizeBoard(staySquare: boolean = true) { | |||||||
|  |  | ||||||
|     const gameInfo = getWebBoardInfo(); |     const gameInfo = getWebBoardInfo(); | ||||||
|     const unit = window.innerHeight > window.innerWidth ? "vw" : "vh"; |     const unit = window.innerHeight > window.innerWidth ? "vw" : "vh"; | ||||||
|     const maxPercent = Math.min(100 / gameInfo.nbColumns, 100 / gameInfo.nbLines); |     const maxPercent = Math.min(80 / gameInfo.nbColumns, 100 / gameInfo.nbLines); | ||||||
|  |  | ||||||
|     for (let i = 0; i < gameInfo.nbLines; i++) { |     for (let i = 0; i < gameInfo.nbLines; i++) { | ||||||
|         const line = document.getElementById("line" + i); |         const line = document.getElementById("line" + i); | ||||||
| @@ -48,16 +50,30 @@ function resizeBoard(staySquare: boolean = true) { | |||||||
|  * @param id |  * @param id | ||||||
|  * @param lineMode default size to have a smooth animation |  * @param lineMode default size to have a smooth animation | ||||||
|  */ |  */ | ||||||
| function createDiv(id: number, lineMode: boolean) { | function createDiv(id: number, lineMode: number) { | ||||||
|     const newDiv = document.createElement("div"); |     const newDiv = document.createElement("div"); | ||||||
|     if (lineMode) { |     if (lineMode === 1) { | ||||||
|         newDiv.style.height = "0"; |         newDiv.style.height = "0"; | ||||||
|         newDiv.style.width = '100%'; |         newDiv.style.width = '100%'; | ||||||
|     } else { |     } else if (lineMode === 0) { | ||||||
|         newDiv.style.height = "100%"; |         newDiv.style.height = "100%"; | ||||||
|         newDiv.style.width = "0"; |         newDiv.style.width = "0"; | ||||||
|  |     } else { // for the initial tile | ||||||
|  |         newDiv.style.height = "100%"; | ||||||
|  |         newDiv.style.width = "100%"; | ||||||
|     } |     } | ||||||
|     newDiv.className = "gridTile tile" + id; |     newDiv.className = "gridTile tile" + id; | ||||||
|  |     for (let j = 0; j < 5; j++) { | ||||||
|  |         const line = document.createElement("div"); | ||||||
|  |         line.className = "subLine"; | ||||||
|  |         for (let i = 0; i < 5; i++) { | ||||||
|  |             const elm = document.createElement('div'); | ||||||
|  |             elm.className = "subTile"; | ||||||
|  |             line.append(elm); | ||||||
|  |         } | ||||||
|  |         newDiv.append(line); | ||||||
|  |     } | ||||||
|  |  | ||||||
|     return newDiv; |     return newDiv; | ||||||
|  |  | ||||||
| } | } | ||||||
| @@ -76,7 +92,7 @@ function createRow(id: number, nbColumn: number) { | |||||||
|     newLine.style.height = "0"; |     newLine.style.height = "0"; | ||||||
|  |  | ||||||
|     for (let i = 0; i < nbColumn; i++) { |     for (let i = 0; i < nbColumn; i++) { | ||||||
|         newLine.append(createDiv(i, true)); |         newLine.append(createDiv(i, 1)); | ||||||
|     } |     } | ||||||
|     return newLine; |     return newLine; | ||||||
| } | } | ||||||
| @@ -128,7 +144,7 @@ function addColumnLeft() { | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     for (let i = 0; i < gameInfo.nbLines; i++) { |     for (let i = 0; i < gameInfo.nbLines; i++) { | ||||||
|         document.getElementById("line" + i)?.prepend(createDiv(0, false)); |         document.getElementById("line" + i)?.prepend(createDiv(0, 0)); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     setTimeout(resizeBoard, 10); |     setTimeout(resizeBoard, 10); | ||||||
| @@ -138,7 +154,7 @@ function addColumnRight() { | |||||||
|     const gameInfo = getWebBoardInfo(); |     const gameInfo = getWebBoardInfo(); | ||||||
|  |  | ||||||
|     for (let i = 0; i < gameInfo.nbLines; i++) { |     for (let i = 0; i < gameInfo.nbLines; i++) { | ||||||
|         document.getElementById("line" + i)?.append(createDiv(gameInfo.nbColumns, false)); |         document.getElementById("line" + i)?.append(createDiv(gameInfo.nbColumns, 0)); | ||||||
|     } |     } | ||||||
|     setTimeout(resizeBoard, 10); |     setTimeout(resizeBoard, 10); | ||||||
| } | } | ||||||
| @@ -148,23 +164,18 @@ function addColumnRight() { | |||||||
|  *  reset the WebBoard |  *  reset the WebBoard | ||||||
|  */ |  */ | ||||||
| function clearBoard() { | function clearBoard() { | ||||||
|     const grid = document.getElementById("gameGrid"); |     const grid = document.getElementById("board"); | ||||||
|     if (!grid) |     if (!grid) | ||||||
|         throw Error("error"); |         throw Error("error"); | ||||||
|     grid.innerHTML = ""; |     grid.innerHTML = ""; | ||||||
|     for (let i = 0; i < 6; i++) { |     const line0 = document.createElement('div'); | ||||||
|         const line = document.createElement("div"); |     line0.className = "gridLine"; | ||||||
|         line.id = "line" + i; |     line0.id = "line0"; | ||||||
|         line.className = "gridLine"; |     line0.append(createDiv(1, 2)); | ||||||
|  |  | ||||||
|         for (let j = 0; j < 6; j++) { |     grid.append(line0); | ||||||
|             const tile = document.createElement("div"); |  | ||||||
|             tile.className = "gridTile tile" + j; |  | ||||||
|             line.append(tile); |  | ||||||
|         } |  | ||||||
|         grid.append(line); |  | ||||||
|     } |  | ||||||
|     resizeBoard(); |     resizeBoard(); | ||||||
|  |     resetVar(); | ||||||
| } | } | ||||||
|  |  | ||||||
| export { | export { | ||||||
|   | |||||||
							
								
								
									
										13
									
								
								src/index.ts
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								src/index.ts
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| import {setGameInfo} from "./moooove"; | import {setGameInfo} from "./moooove"; | ||||||
| import {resizeBoard} from "./Board"; | import {clearBoard, resizeBoard} from "./Board"; | ||||||
|  |  | ||||||
| type CrashGroup = { | type CrashGroup = { | ||||||
|     name: string; |     name: string; | ||||||
| @@ -33,9 +33,11 @@ type CrashReport = { | |||||||
| }; | }; | ||||||
|  |  | ||||||
| type Move = { | type Move = { | ||||||
|     qsrc: number; |     x: number; | ||||||
|     qdst: number; |     y: number; | ||||||
|     adst: number; |     id: number; | ||||||
|  |     tile: { t: number[], c: number[], name: string, angle: string }; | ||||||
|  |  | ||||||
| }; | }; | ||||||
|  |  | ||||||
| type Game = { | type Game = { | ||||||
| @@ -73,8 +75,9 @@ function main() { | |||||||
|  |  | ||||||
| window.onload = ((e) => { | window.onload = ((e) => { | ||||||
|     main(); |     main(); | ||||||
|  |     clearBoard(); | ||||||
|     setGameInfo(); |     setGameInfo(); | ||||||
|     resizeBoard(); |     resizeBoard(); | ||||||
| }); | }); | ||||||
|  |  | ||||||
| export {games}; | export {games, Move}; | ||||||
| @@ -1,11 +1,5 @@ | |||||||
| import {games} from "./index"; | import {games, Move} from "./index"; | ||||||
| import {addColumnLeft, addColumnRight, addRowAbove, addRowUnder} from "./Board"; | import {addColumnLeft, addColumnRight, addRowAbove, addRowUnder, clearBoard} from "./Board"; | ||||||
|  |  | ||||||
| type Move2 = { |  | ||||||
|     player_id: number; |  | ||||||
|     x: number; |  | ||||||
|     y: number; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| let min_x = 0; | let min_x = 0; | ||||||
| let max_x = 0; | let max_x = 0; | ||||||
| @@ -14,16 +8,28 @@ let max_y = 0; | |||||||
| let gameIndex = 0; | let gameIndex = 0; | ||||||
| let gameMoveId = 0; | let gameMoveId = 0; | ||||||
|  |  | ||||||
|  | const playerColors = ["green", "blue", "purple"]; | ||||||
|  |  | ||||||
|  | function resetVar() { | ||||||
|  |     min_y = 0; | ||||||
|  |     min_x = 0; | ||||||
|  |     max_x = 0; | ||||||
|  |     max_y = 0; | ||||||
|  |     gameMoveId = 0; | ||||||
|  | } | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  *  change the displayed game info to the previous/next game |  *  change the displayed game info to the previous/next game | ||||||
|  */ |  */ | ||||||
| function switchPrevGame() { | function switchPrevGame() { | ||||||
|  |     clearBoard(); | ||||||
|     if (gameIndex > 0) |     if (gameIndex > 0) | ||||||
|         gameIndex--; |         gameIndex--; | ||||||
|     setGameInfo(); |     setGameInfo(); | ||||||
| } | } | ||||||
|  |  | ||||||
| function switchNextGame() { | function switchNextGame() { | ||||||
|  |     clearBoard(); | ||||||
|     if (gameIndex < games.length - 1) |     if (gameIndex < games.length - 1) | ||||||
|         gameIndex++; |         gameIndex++; | ||||||
|     setGameInfo(); |     setGameInfo(); | ||||||
| @@ -35,9 +41,12 @@ function switchNextGame() { | |||||||
| function setGameInfo() { | function setGameInfo() { | ||||||
|     (<HTMLElement>document.getElementById("seed_disp")).innerText = games[gameIndex].seed + ""; |     (<HTMLElement>document.getElementById("seed_disp")).innerText = games[gameIndex].seed + ""; | ||||||
|     (<HTMLElement>document.getElementById("player0_disp")).innerText = games[gameIndex].player0 + ""; |     (<HTMLElement>document.getElementById("player0_disp")).innerText = games[gameIndex].player0 + ""; | ||||||
|  |     (<HTMLElement>document.getElementById("player0_disp")).style.color = playerColors[0]; | ||||||
|     (<HTMLElement>document.getElementById("player1_disp")).innerText = games[gameIndex].player1 + ""; |     (<HTMLElement>document.getElementById("player1_disp")).innerText = games[gameIndex].player1 + ""; | ||||||
|  |     (<HTMLElement>document.getElementById("player1_disp")).style.color = playerColors[1]; | ||||||
|     (<HTMLElement>document.getElementById("winner_disp")).innerText = games[gameIndex].winner + ""; |     (<HTMLElement>document.getElementById("winner_disp")).innerText = games[gameIndex].winner + ""; | ||||||
|     (<HTMLElement>document.getElementById("cause_disp")).innerText = games[gameIndex].cause + ""; |     (<HTMLElement>document.getElementById("cause_disp")).innerText = games[gameIndex].cause + ""; | ||||||
|  |     addMove(games[gameIndex]["moves"][0]); | ||||||
|     gameMoveId = 0; |     gameMoveId = 0; | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -83,7 +92,7 @@ function inInterval(x: number, a: number, b: number) { | |||||||
|  * resize the board and add the move to it |  * resize the board and add the move to it | ||||||
|  * @param move |  * @param move | ||||||
|  */ |  */ | ||||||
| function addMove(move: Move2) { | function addMove(move: Move) { | ||||||
|     switch (inInterval(move.x, min_x, max_x)) { |     switch (inInterval(move.x, min_x, max_x)) { | ||||||
|         case 0: |         case 0: | ||||||
|             break; |             break; | ||||||
| @@ -111,20 +120,30 @@ function addMove(move: Move2) { | |||||||
|     placeMove(move); |     placeMove(move); | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | function setInnerTile(elm: HTMLElement, tile: number[]) { | ||||||
|  |     const idx_to_cord = [[1, 0], [2, 0], [3, 0], [4, 1], [4, 2], [4, 3], [3, 4], [2, 4], [1, 4], [0, 3], [0, 2], [0, 1], [2, 2]]; | ||||||
|  |     const nb_to_color = ["green", "gray", "blue", "#964B00", "purple", "gold", "#069AF3", "#420D08", "white"]; | ||||||
|  |     for (let i = 0; i < 13; i++) { | ||||||
|  |         const subLine = elm.children[idx_to_cord[i][1]]; | ||||||
|  |         (<HTMLElement>subLine.children[idx_to_cord[i][0]]).style.background = nb_to_color[tile[i]]; | ||||||
|  |         (<HTMLElement>subLine.children[idx_to_cord[i][0]]).innerText = i + " - " + tile[i]; | ||||||
|  |     } | ||||||
|  | } | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * there is the real adding part |  * there is the real adding part | ||||||
|  * @param move |  * @param move | ||||||
|  */ |  */ | ||||||
| function placeMove(move: Move2) { | function placeMove(move: Move) { | ||||||
|     console.log(`real coords: ${move.x - min_x} ${move.y - min_y}`); |  | ||||||
|     const line = <HTMLElement>document.getElementById("line" + (move.y - min_y)); |     const line = <HTMLElement>document.getElementById("line" + (move.y - min_y)); | ||||||
|     const box = <HTMLElement>line.children[move.x - min_x]; |     const box = <HTMLElement>line.children[move.x - min_x]; | ||||||
|     box.style.background = 'darkblue'; |     box.style.border = "solid 5px " + (inInterval(move.id, 0, 1) === 0 ? playerColors[move.id] : playerColors[2]); | ||||||
|     box.innerText = gameMoveId + "-> (" + move.x + ", " + move.y + ")"; |     setInnerTile(box, move.tile.c); | ||||||
|  |     box.style.rotate = move.tile.angle + "deg"; | ||||||
| } | } | ||||||
|  |  | ||||||
| function removeMove(move: Move2) { | function removeMove(move: Move) { | ||||||
|     console.log(`real coords: ${move.x - min_x} ${move.y - min_y}`); |     console.log(`real coords: ${move.x - min_x} ${move.y - min_y}`); | ||||||
|     const line = <HTMLElement>document.getElementById("line" + (move.y - min_y)); |     const line = <HTMLElement>document.getElementById("line" + (move.y - min_y)); | ||||||
|     const box = <HTMLElement>line.children[move.x - min_x]; |     const box = <HTMLElement>line.children[move.x - min_x]; | ||||||
| @@ -150,4 +169,4 @@ prevMoveButton.addEventListener("click", prevMove); | |||||||
| lastMoveButton.addEventListener("click", tolastMove); | lastMoveButton.addEventListener("click", tolastMove); | ||||||
| firstMoveButton.addEventListener("click", toFirstMove); | firstMoveButton.addEventListener("click", toFirstMove); | ||||||
|  |  | ||||||
| export {setGameInfo, switchPrevGame}; | export {setGameInfo, switchPrevGame, resetVar}; | ||||||
							
								
								
									
										491
									
								
								src/player.html
									
									
									
									
									
								
							
							
						
						
									
										491
									
								
								src/player.html
									
									
									
									
									
								
							| @@ -68,102 +68,431 @@ | |||||||
|  |  | ||||||
| <div id="games"> | <div id="games"> | ||||||
|     <div id="board" class="board"> |     <div id="board" class="board"> | ||||||
|         <div class=gridLine id="line0"> |  | ||||||
|             <div class="gridTile tile0"></div> |  | ||||||
|         </div> |  | ||||||
|     </div> |     </div> | ||||||
| </div> | </div> | ||||||
| <div id="jsonData"> | <div id="jsonData"> | ||||||
|       <pre>[ |       <pre> | ||||||
| { | [ | ||||||
|   "seed": 1881916104, |   { | ||||||
|   "player0": "Teisipyte", |     "seed": 3544045162, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|     "player1": "Teisipyte", |     "player1": "Teisipyte", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": -1, "y": 0 }, { "id": 1, "x": -1, "y": 1 }, { "id": 0, "x": -2, "y": 1 }, { "id": 1, "x": -1, "y": 2 }, { "id": 0, "x": -3, "y": 1 }, { "id": 1, "x": -3, "y": 0 } ], |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 0, "y": 1, "tile": { "t": [ 3, 3, 3, 3, 2, 1, 0, 0, 0, 1, 2, 3, 2 ], "c": [ 0, 0, 0, 0, 1, 0, 3, 3, 3, 0, 1, 0, 1 ], "name" : "init", "angle" : "180" } }, { "id": 0, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|   "winner": "??", |     "winner": "Teisipyte", | ||||||
|   "cause": "Maximal number of moves reached (7), game is a draw" |     "cause": "Victory on points for player Teisipyte" | ||||||
| } |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 2130915275, |     "seed": 3544045162, | ||||||
|   "player0": "Hippolyte", |     "mode": "no meeple", | ||||||
|  |     "player0": "Teisipyte", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 4, 5, 6, 6, 7, 0, 0, 1, 2, 2, 3, 4, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": 1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 2, "y": 0, "tile": { "t": [ 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1 ], "c": [ 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "turn", "angle" : "90" } }, { "id": 1, "x": -1, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ], "c": [ 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3 ], "name" : "castle12", "angle" : "0" } }, { "id": 0, "x": -2, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 2638926167, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Player_0b", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 1, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 1, "x": 0, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": 1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 1, "y": -1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } }, { "id": 1, "x": -1, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ], "c": [ 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3 ], "name" : "castle12", "angle" : "0" } }, { "id": 1, "x": 0, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 890345227, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Player_0a", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 1, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 1, "x": 0, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": 1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 1, "y": -1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } }, { "id": 1, "x": -1, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ], "c": [ 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3 ], "name" : "castle12", "angle" : "0" } }, { "id": 1, "x": 0, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1188431381, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Basic Player", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": -1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": -1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": -2, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } }, { "id": 1, "x": 0, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ], "c": [ 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3 ], "name" : "castle12", "angle" : "0" } }, { "id": 0, "x": -2, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0, 1 ], "c": [ 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "270" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 3544045162, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Teisipyte", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 0, "y": 1, "tile": { "t": [ 3, 3, 3, 3, 2, 1, 0, 0, 0, 1, 2, 3, 2 ], "c": [ 0, 0, 0, 0, 1, 0, 3, 3, 3, 0, 1, 0, 1 ], "name" : "init", "angle" : "180" } }, { "id": 0, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Teisipyte", | ||||||
|  |     "cause": "Victory on points for player Teisipyte" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 2638926167, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Player_0b", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 2, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Player_0b", | ||||||
|  |     "cause": "Pierre Du Caillou (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 890345227, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Player_0a", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 2, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Player_0a", | ||||||
|  |     "cause": "Pierre Du Caillou (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1188431381, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Basic Player", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 1, "y": -1, "tile": { "t": [ 1, 2, 3, 3, 3, 3, 3, 2, 1, 0, 0, 0, 2 ], "c": [ 0, 1, 0, 0, 0, 0, 0, 1, 0, 3, 3, 3, 1 ], "name" : "init", "angle" : "90" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Basic Player", | ||||||
|  |     "cause": "Pierre Du Caillou (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 794903401, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Jeune Cadre Dynamique", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Jeune Cadre Dynamique", | ||||||
|  |     "cause": "Pierre Du Caillou (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 4111397969, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Player Random", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Player Random", | ||||||
|  |     "cause": "Pierre Du Caillou (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 2505933510, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Jean Claude Van Dam", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 2, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Jean Claude Van Dam", | ||||||
|  |     "cause": "Pierre Du Caillou (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 794903401, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "BENZEMA", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "BENZEMA (id=1) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 453684766, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Darkiki", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Darkiki (id=1) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1693317923, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|     "player1": "Full random player", |     "player1": "Full random player", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": 1, "y": 0 }, { "id": 1, "x": 8, "y": 4 }, { "id": 0, "x": 0, "y": -1 }, { "id": 1, "x": 8, "y": 8 }, { "id": 0, "x": 0, "y": -2 }, { "id": 1, "x": 2, "y": 0 } ], |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 3, "y": 3, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|   "winner": "??", |     "winner": "Pierre Du Caillou", | ||||||
|   "cause": "Maximal number of moves reached (7), game is a draw" |     "cause": "Full random player (id=1) has played a move that is not connected" | ||||||
| } |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 2130915275, |     "seed": 2013485057, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Bilal", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 2, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Bilal", | ||||||
|  |     "cause": "Pierre Du Caillou (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 453684766, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "toto", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "toto (id=1) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 3611550182, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "5aoula", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "5aoula (id=1) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1090912934, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "1Wassim", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 2, "y": 2, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "1Wassim (id=1) has played a move that is not connected" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 794903401, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Claude", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Claude (id=1) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 773597948, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Misak0", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Misak0 (id=1) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 2013485057, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Mathieu", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Mathieu (id=1) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1624906737, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Roland Le Maitre", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 1, "y": 1, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Roland Le Maitre (id=1) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1436866379, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Thibault", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": -1662659984, "x": 32542, "y": -1662659984, "tile": { "t": [ 32542, -457958272, 22082, -457958272, 22082, -457982448, 22082, -457990160, 22082, 13, 0, 33, 0 ], "c": [ -457957888, 22082, -1662661408, 32542, 96, 0, 32, 0, -2137132079, 22087, 0, 0, 128 ], "name" : "init", "angle" : "-666" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Thibault (id=1) has not played the tile it's been given" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 794903401, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Jeune Cadre Dynamique", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": -1, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": 1, "y": -1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": -2, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } }, { "id": 1, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ], "c": [ 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3 ], "name" : "castle12", "angle" : "0" } }, { "id": 0, "x": 0, "y": 2, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 4111397969, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Player Random", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": 1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 1, "y": -1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } }, { "id": 1, "x": -1, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ], "c": [ 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3 ], "name" : "castle12", "angle" : "0" } }, { "id": 0, "x": -2, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 2505933510, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Jean Claude Van Dam", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Jean Claude Van Dam (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 794903401, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "BENZEMA", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 2, "y": 0, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "BENZEMA (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 453684766, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Darkiki", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": -1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": -1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": -1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1693317923, | ||||||
|  |     "mode": "no meeple", | ||||||
|     "player0": "Full random player", |     "player0": "Full random player", | ||||||
|   "player1": "Hippolyte", |     "player1": "Pierre Du Caillou", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": 4, "y": 8 }, { "id": 1, "x": 4, "y": 7 }, { "id": 0, "x": 6, "y": 8 }, { "id": 1, "x": 4, "y": 6 }, { "id": 0, "x": 3, "y": 2 }, { "id": 1, "x": 2, "y": 2 } ], |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 3, "y": 3, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } } ], | ||||||
|   "winner": "??", |     "winner": "Pierre Du Caillou", | ||||||
|   "cause": "Maximal number of moves reached (7), game is a draw" |     "cause": "Full random player (id=0) has played a move that is not connected" | ||||||
| } |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 2130915275, |     "seed": 2013485057, | ||||||
|   "player0": "Hippolyte", |     "mode": "no meeple", | ||||||
|   "player1": "Full random player", |     "player0": "Bilal", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": 1, "y": 0 }, { "id": 1, "x": 8, "y": 4 }, { "id": 0, "x": 0, "y": -1 }, { "id": 1, "x": 8, "y": 8 }, { "id": 0, "x": 0, "y": -2 }, { "id": 1, "x": 2, "y": 0 } ], |     "player1": "Pierre Du Caillou", | ||||||
|   "winner": "??", |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": -1, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": 1, "y": -1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 2, "y": -1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|   "cause": "Maximal number of moves reached (7), game is a draw" |     "winner": "Pierre Du Caillou", | ||||||
| } |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 2130915275, |     "seed": 453684766, | ||||||
|   "player0": "Full random player", |     "mode": "no meeple", | ||||||
|   "player1": "Hippolyte", |     "player0": "toto", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": 4, "y": 8 }, { "id": 1, "x": 4, "y": 7 }, { "id": 0, "x": 6, "y": 8 }, { "id": 1, "x": 4, "y": 6 }, { "id": 0, "x": 3, "y": 2 }, { "id": 1, "x": 2, "y": 2 } ], |     "player1": "Pierre Du Caillou", | ||||||
|   "winner": "??", |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } } ], | ||||||
|   "cause": "Maximal number of moves reached (7), game is a draw" |     "winner": "Pierre Du Caillou", | ||||||
| } |     "cause": "toto (id=0) has played a move that is not connected" | ||||||
|  |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 3336162595, |     "seed": 3611550182, | ||||||
|   "player0": "Androdameia", |     "mode": "no meeple", | ||||||
|   "player1": "Phoebe", |     "player0": "Hanaa07", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": -1, "y": 0 }, { "id": 1, "x": -2, "y": 0 }, { "id": 0, "x": 0, "y": -1 }, { "id": 1, "x": 1, "y": 0 }, { "id": 0, "x": 0, "y": -2 }, { "id": 1, "x": -1, "y": -2 } ], |     "player1": "Pierre Du Caillou", | ||||||
|   "winner": "Phoebe", |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } } ], | ||||||
|   "cause": "Victory on points for player Phoebe" |     "winner": "Pierre Du Caillou", | ||||||
| } |     "cause": "Hanaa07 (id=0) has played a move that is not connected" | ||||||
|  |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 1127192704, |     "seed": 1090912934, | ||||||
|   "player0": "Androdameia", |     "mode": "no meeple", | ||||||
|   "player1": "Full random player", |     "player0": "5aoula", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": -1, "y": 0 }, { "id": 1, "x": 9, "y": 5 }, { "id": 0, "x": 9, "y": 6 }, { "id": 1, "x": 0, "y": 7 }, { "id": 0, "x": 9, "y": 7 }, { "id": 1, "x": 3, "y": 0 } ], |     "player1": "Pierre Du Caillou", | ||||||
|   "winner": "??", |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": -1, "x": 1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } } ], | ||||||
|   "cause": "Maximal number of moves reached (7), game is a draw" |     "winner": "Pierre Du Caillou", | ||||||
| } |     "cause": "5aoula (id=0) has played a move that is not connected" | ||||||
|  |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 1127192704, |     "seed": 794903401, | ||||||
|   "player0": "Full random player", |     "mode": "no meeple", | ||||||
|   "player1": "Androdameia", |     "player0": "Claude", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": 1, "y": 9 }, { "id": 1, "x": 2, "y": 9 }, { "id": 0, "x": 9, "y": 0 }, { "id": 1, "x": 1, "y": 8 }, { "id": 0, "x": 0, "y": 3 }, { "id": 1, "x": 2, "y": 10 } ], |     "player1": "Pierre Du Caillou", | ||||||
|   "winner": "Androdameia", |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "xroad", "angle" : "-666" } } ], | ||||||
|   "cause": "Victory on points for player Androdameia" |     "winner": "Pierre Du Caillou", | ||||||
| } |     "cause": "Claude (id=0) has not played the tile it's been given" | ||||||
|  |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 1127192704, |     "seed": 773597948, | ||||||
|   "player0": "Androdameia", |     "mode": "no meeple", | ||||||
|   "player1": "Full random player", |     "player0": "Misak0", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": -1, "y": 0 }, { "id": 1, "x": 9, "y": 5 }, { "id": 0, "x": 9, "y": 6 }, { "id": 1, "x": 0, "y": 7 }, { "id": 0, "x": 9, "y": 7 }, { "id": 1, "x": 3, "y": 0 } ], |     "player1": "Pierre Du Caillou", | ||||||
|   "winner": "??", |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "xroad", "angle" : "-666" } } ], | ||||||
|   "cause": "Maximal number of moves reached (7), game is a draw" |     "winner": "Pierre Du Caillou", | ||||||
| } |     "cause": "Misak0 (id=0) has not played the tile it's been given" | ||||||
|  |   } | ||||||
| , | , | ||||||
| { |   { | ||||||
|   "seed": 1127192704, |     "seed": 2013485057, | ||||||
|   "player0": "Full random player", |     "mode": "no meeple", | ||||||
|   "player1": "Androdameia", |     "player0": "Mathieu", | ||||||
|   "moves": [ { "id": 4294967295, "x": 0, "y": 0 }, { "id": 0, "x": 1, "y": 9 }, { "id": 1, "x": 2, "y": 9 }, { "id": 0, "x": 9, "y": 0 }, { "id": 1, "x": 1, "y": 8 }, { "id": 0, "x": 0, "y": 3 }, { "id": 1, "x": 2, "y": 10 } ], |     "player1": "Pierre Du Caillou", | ||||||
|   "winner": "Androdameia", |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } } ], | ||||||
|   "cause": "Victory on points for player Androdameia" |     "winner": "Pierre Du Caillou", | ||||||
| } |     "cause": "Mathieu (id=0) has played a move that is not connected" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1624906737, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Roland Le Maitre", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Roland Le Maitre (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 1436866379, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Thibaud", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "xroad", "angle" : "-666" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Thibaud (id=0) has not played the tile it's been given" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 2638926167, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Player_0b", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 1, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 1, "x": 0, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": 1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 1, "y": -1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } }, { "id": 1, "x": -1, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ], "c": [ 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3 ], "name" : "castle12", "angle" : "0" } }, { "id": 1, "x": 0, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 2505933510, | ||||||
|  |     "mode": "infinite meeple", | ||||||
|  |     "player0": "Pierre Du Caillou", | ||||||
|  |     "player1": "Jean Claude Van Dam", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": 2, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } } ], | ||||||
|  |     "winner": "Jean Claude Van Dam", | ||||||
|  |     "cause": "Pierre Du Caillou (id=0) has played a move with an invalid connection" | ||||||
|  |   } | ||||||
|  | , | ||||||
|  |   { | ||||||
|  |     "seed": 4111397969, | ||||||
|  |     "mode": "no meeple", | ||||||
|  |     "player0": "Player Random", | ||||||
|  |     "player1": "Pierre Du Caillou", | ||||||
|  |     "moves": [ { "id": -1, "x": 0, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 1, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 1, "x": -1, "y": 0, "tile": { "t": [ 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 2, 1, 2 ], "c": [ 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1 ], "name" : "init", "angle" : "0" } }, { "id": 0, "x": 0, "y": -1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "c": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "name" : "green", "angle" : "0" } }, { "id": 1, "x": 1, "y": 1, "tile": { "t": [ 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 0, 8 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 4 ], "name" : "xroad", "angle" : "0" } }, { "id": 0, "x": 1, "y": -1, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } }, { "id": 1, "x": -1, "y": 1, "tile": { "t": [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 ], "c": [ 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3 ], "name" : "castle12", "angle" : "0" } }, { "id": 0, "x": -2, "y": 0, "tile": { "t": [ 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "c": [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1 ], "name" : "turn", "angle" : "0" } } ], | ||||||
|  |     "winner": "Pierre Du Caillou", | ||||||
|  |     "cause": "Victory on points for player Pierre Du Caillou" | ||||||
|  |   } | ||||||
| ] | ] | ||||||
|       </pre> |       </pre> | ||||||
| </div> | </div> | ||||||
|   | |||||||
| @@ -1,18 +1,24 @@ | |||||||
| .board { | .board { | ||||||
|     width: 100vw; |     width: 80vw; | ||||||
|     height: 100vh; |     height: 80vh; | ||||||
|     background: black; |     background: black; | ||||||
| } | } | ||||||
|  |  | ||||||
| .gridTile { | .gridTile { | ||||||
|     border: 1px solid white; |     border: 1px solid white; | ||||||
|     color: white; |     color: white; | ||||||
|     font-size: 5em; |     font-size: 1em; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | .SubLine { | ||||||
|  |     height: 20%; | ||||||
|  |     display: flex; | ||||||
|  |     flex-direction: row; | ||||||
| } | } | ||||||
|  |  | ||||||
| .gridLine { | .gridLine { | ||||||
|     width: 100%; |     width: 100%; | ||||||
|     height: 200px; |     height: 100%; | ||||||
|     display: flex; |     display: flex; | ||||||
|     flex-direction: row; |     flex-direction: row; | ||||||
| } | } | ||||||
| @@ -21,3 +27,9 @@ | |||||||
|     height: 100%; |     height: 100%; | ||||||
|     width: 100%; |     width: 100%; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | .subTile { | ||||||
|  |     width: 20%; | ||||||
|  |     height: 100%; | ||||||
|  |     border: 1px solid white; | ||||||
|  | } | ||||||
		Reference in New Issue
	
	Block a user