Chessistics/Data/levels/level_03.json
Samuel Bouchet 672b831fc1 Add Pion piece, surplus stock, and levels 4-6
- Pion (Pawn): orthogonal range 1, social status 1 (lowest), green color
- All existing levels get surplus stock including pawns for player choice
- Level 4 "Le Carrefour": 8x8, dual cargo diagonal routes, center wall block
- Level 5 "Le Labyrinthe": 8x6, wall corridors, knights essential for shortcuts
- Level 6 "Trois Royaumes": 10x8, 3 productions + 3 demands, full network puzzle
- Production interval concept removed (all produce every turn)
- GDD updated with Pion section and 6 level descriptions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-10 22:03:36 +02:00

28 lines
819 B
JSON

{
"id": 3,
"name": "Le Col",
"description": "Franchissez le mur et gerez deux types de cargaison.",
"width": 6,
"height": 6,
"productions": [
{ "col": 0, "row": 0, "name": "Scierie", "cargo": "wood" },
{ "col": 5, "row": 0, "name": "Carriere", "cargo": "stone" }
],
"demands": [
{ "col": 5, "row": 5, "name": "Depot Royal", "cargo": "wood", "amount": 2, "deadline": 40 },
{ "col": 0, "row": 5, "name": "Forge", "cargo": "stone", "amount": 2, "deadline": 40 }
],
"walls": [
{ "col": 2, "row": 2 },
{ "col": 2, "row": 3 },
{ "col": 2, "row": 4 },
{ "col": 3, "row": 4 },
{ "col": 4, "row": 4 }
],
"stock": [
{ "kind": "pawn", "count": 6 },
{ "kind": "rook", "count": 6 },
{ "kind": "bishop", "count": 1 },
{ "kind": "knight", "count": 2 }
]
}