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.
17 lines
419 B
JSON
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 }
|
|
]
|
|
}
|