28 lines
804 B
JSON
28 lines
804 B
JSON
|
|
{
|
||
|
|
"id": 4,
|
||
|
|
"name": "Le Carrefour",
|
||
|
|
"description": "Deux productions, deux demandes, et un carrefour au centre.",
|
||
|
|
"width": 8,
|
||
|
|
"height": 8,
|
||
|
|
"productions": [
|
||
|
|
{ "col": 0, "row": 0, "name": "Scierie", "cargo": "wood" },
|
||
|
|
{ "col": 7, "row": 7, "name": "Carriere", "cargo": "stone" }
|
||
|
|
],
|
||
|
|
"demands": [
|
||
|
|
{ "col": 7, "row": 0, "name": "Depot Royal", "cargo": "wood", "amount": 3, "deadline": 40 },
|
||
|
|
{ "col": 0, "row": 7, "name": "Forge", "cargo": "stone", "amount": 3, "deadline": 40 }
|
||
|
|
],
|
||
|
|
"walls": [
|
||
|
|
{ "col": 3, "row": 3 },
|
||
|
|
{ "col": 4, "row": 4 },
|
||
|
|
{ "col": 3, "row": 4 },
|
||
|
|
{ "col": 4, "row": 3 }
|
||
|
|
],
|
||
|
|
"stock": [
|
||
|
|
{ "kind": "pawn", "count": 8 },
|
||
|
|
{ "kind": "rook", "count": 4 },
|
||
|
|
{ "kind": "bishop", "count": 2 },
|
||
|
|
{ "kind": "knight", "count": 2 }
|
||
|
|
]
|
||
|
|
}
|