Chessistics/Data/levels/level_01.json
Samuel Bouchet e6eaae43ab Initial commit: Chessistics prototype v0.3
Black box sim engine (commands in, events out) with 3 piece types
(Rook, Bishop, Knight), cargo transfer system with social status
priority, collision detection, and victory/defeat conditions.

57 tests covering rules, simulation, loading, and solvability.
Godot 4 presentation layer scaffolding.
2026-04-10 14:58:03 +02:00

17 lines
419 B
JSON

{
"id": 1,
"name": "Premier Convoi",
"description": "Acheminez du bois de la scierie au depot.",
"width": 4,
"height": 4,
"productions": [
{ "col": 0, "row": 0, "name": "Scierie", "cargo": "wood", "interval": 2 }
],
"demands": [
{ "col": 3, "row": 0, "name": "Depot Royal", "cargo": "wood", "amount": 3, "deadline": 30 }
],
"walls": [],
"stock": [
{ "kind": "rook", "count": 3 }
]
}