Added decorations to main menu, added data for research and buildings

This commit is contained in:
2026-05-06 20:13:54 +02:00
parent 429e10eca1
commit a9475aaaf9
3 changed files with 279 additions and 0 deletions
+72
View File
@@ -0,0 +1,72 @@
[
{
"id": "basics",
"inputs": [],
"research": "",
"crafttime": 1.0
},
{
"id": "stoneage",
"inputs": [
{
"item": "stone",
"amount": 1
},
{
"item": "coal",
"amount": 1
}
],
"research": "basics",
"crafttime": 1.0
},
{
"id": "copperage",
"inputs": [
{
"item": "copper_ore",
"amount": 1
},
{
"item": "rope",
"amount": 1
}
],
"research": "stoneage",
"crafttime": 1.0
},
{
"id": "bronzeage",
"inputs": [
{
"item": "copper_ingot",
"amount": 1
},
{
"item": "tin_ingot",
"amount": 1
}
],
"research": "copperage",
"crafttime": 1.0
},
{
"id": "ironage",
"inputs": [
{
"item": "bronze_ingot",
"amount": 1
},
{
"item": "dynamo_v1",
"amount": 1
},
{
"item": "battery_v1",
"amount": 1
}
],
"research": "bronzeage",
"crafttime": 1.0
}
]