ONI Agent Bridge - initial mod implementation

This commit is contained in:
JianFeeeee
2026-05-30 11:00:36 +08:00
commit 1f25d3d879
95 changed files with 50686 additions and 0 deletions

40
docs/batch_example.json Normal file
View File

@ -0,0 +1,40 @@
{
"name": "Build SPOM - Step 1: Dig and Electrolyzer",
"actions": [
{
"type": "dig",
"x": 42,
"y": 40,
"width": 8,
"height": 6
},
{
"type": "build",
"buildingId": "Electrolyzer",
"x": 45,
"y": 42
},
{
"type": "build",
"buildingId": "GasPump",
"x": 43,
"y": 42
},
{
"type": "build",
"buildingId": "HydrogenGenerator",
"x": 45,
"y": 40
},
{
"type": "wait",
"delayMs": 100
},
{
"type": "priority",
"x": 45,
"y": 42,
"priority": 9
}
]
}