Working on inventory and crafting system. Translated Excel-Itemlist to .json.

This commit is contained in:
2026-05-05 15:35:42 +02:00
parent 02ba36b665
commit fc26fa2a75
11 changed files with 829 additions and 10 deletions
+701
View File
@@ -0,0 +1,701 @@
[
{
"id": "sand",
"inputs": [
{
"ingredient": "stone",
"amount": 1
}
],
"output": {
"item": "sand",
"amount": 1
},
"workstation": "crusher",
"texture": "res://Assets/Images/Items/SandSymbol.png",
"research": "stoneage"
},
{
"id": "stone_gear",
"inputs": [
{
"ingredient": "stone",
"amount": 1
}
],
"output": {
"item": "stone_gear",
"amount": 1
},
"workstation": "workbench",
"texture": "res://Assets/Images/Items/StoneGearSymbol.png",
"research": "stoneage"
},
{
"id": "copper_gear",
"inputs": [
{
"ingredient": "copper_ingot",
"amount": 1
}
],
"output": {
"item": "copper_gear",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/CopperGearSymbol.png",
"research": "copperage"
},
{
"id": "tin_gear",
"inputs": [
{
"ingredient": "tin_ingot",
"amount": 1
}
],
"output": {
"item": "tin_gear",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/TinGearSymbol.png",
"research": "copperage"
},
{
"id": "bronze_gear",
"inputs": [
{
"ingredient": "bronze_ingot",
"amount": 1
}
],
"output": {
"item": "bronze_gear",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/BronzeGearSymbol.png",
"research": "bronzeage"
},
{
"id": "bronze_ingot",
"inputs": [
{
"ingredient": "tin_ingot",
"amount": 1
},
{
"ingredient": "copper_ingot",
"amount": 1
},
{
"ingredient": "coal",
"amount": 1
}
],
"output": {
"item": "bronze_ingot",
"amount": 1
},
"workstation": "furnace",
"texture": "res://Assets/Images/Items/BronzeIngotSymbol.png",
"research": "bronzeage"
},
{
"id": "iron_gear",
"inputs": [
{
"ingredient": "iron_ingot",
"amount": 1
}
],
"output": {
"item": "iron_gear",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/IronGearSymbol.png",
"research": "ironage"
},
{
"id": "iron_ingot",
"inputs": [
{
"ingredient": "iron_ore",
"amount": 1
},
{
"ingredient": "coal",
"amount": 1
}
],
"output": {
"item": "iron_ingot",
"amount": 1
},
"workstation": "furnace",
"texture": "res://Assets/Images/Items/IronIngotSymbol.png",
"research": "ironage"
},
{
"id": "tin_ingot",
"inputs": [
{
"ingredient": "tin_ore",
"amount": 1
},
{
"ingredient": "coal",
"amount": 1
}
],
"output": {
"item": "tin_ingot",
"amount": 1
},
"workstation": "furnace",
"texture": "res://Assets/Images/Items/TinIngotSymbol.png",
"research": "copperage"
},
{
"id": "copper_ingot",
"inputs": [
{
"ingredient": "copper_ore",
"amount": 1
},
{
"ingredient": "coal",
"amount": 1
}
],
"output": {
"item": "copper_ingot",
"amount": 1
},
"workstation": "furnace",
"texture": "res://Assets/Images/Items/CopperIngotSymbol.png",
"research": "copperage"
},
{
"id": "rope",
"inputs": [
{
"ingredient": "spider_silk",
"amount": 1
}
],
"output": {
"item": "rope",
"amount": 1
},
"workstation": "workbench",
"texture": "res://Assets/Images/Items/RopeSymbol.png",
"research": "stoneage"
},
{
"id": "spider_silk",
"inputs": [],
"output": {
"item": "spider_silk",
"amount": 1
},
"workstation": "",
"texture": "res://Assets/Images/Items/RopeSymbol.png",
"research": "basics"
},
{
"id": "stone_robot",
"inputs": [
{
"ingredient": "stone",
"amount": 1
},
{
"ingredient": "rope",
"amount": 1
},
{
"ingredient": "stone_gear",
"amount": 1
}
],
"output": {
"item": "stone_robot",
"amount": 1
},
"workstation": "workbench",
"texture": "res://Assets/Images/Items/StoneRobotSymbol.png",
"research": "stoneage"
},
{
"id": "copper_robot",
"inputs": [
{
"ingredient": "copper_plate",
"amount": 1
},
{
"ingredient": "rope",
"amount": 1
},
{
"ingredient": "copper_gear",
"amount": 1
},
{
"ingredient": "battery_v1",
"amount": 1
}
],
"output": {
"item": "copper_robot",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/CopperRobotSymbol.png",
"research": "copperage"
},
{
"id": "tin_robot",
"inputs": [
{
"ingredient": "tin_plate",
"amount": 1
},
{
"ingredient": "rope",
"amount": 1
},
{
"ingredient": "tin_gear",
"amount": 1
},
{
"ingredient": "battery_v1",
"amount": 1
}
],
"output": {
"item": "tin_robot",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/TinRobotSymbol.png",
"research": "copperage"
},
{
"id": "bronze_robot",
"inputs": [
{
"ingredient": "bronze_plate",
"amount": 1
},
{
"ingredient": "rope",
"amount": 1
},
{
"ingredient": "bronze_gear",
"amount": 1
},
{
"ingredient": "battery_v1",
"amount": 1
}
],
"output": {
"item": "bronze_robot",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/BronzeRobotSymbol.png",
"research": "bronzeage"
},
{
"id": "iron_robot",
"inputs": [
{
"ingredient": "iron_plate",
"amount": 1
},
{
"ingredient": "rope",
"amount": 1
},
{
"ingredient": "iron_gear",
"amount": 1
},
{
"ingredient": "battery_v2",
"amount": 1
}
],
"output": {
"item": "iron_robot",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/IronRobotSymbol.png",
"research": "ironage"
},
{
"id": "glass",
"inputs": [
{
"ingredient": "sand",
"amount": 1
},
{
"ingredient": "coal",
"amount": 1
}
],
"output": {
"item": "glass",
"amount": 1
},
"workstation": "furnace",
"texture": "res://Assets/Images/Items/GlassSymbol.png",
"research": "stoneage"
},
{
"id": "fabric",
"inputs": [
{
"ingredient": "rope",
"amount": 1
},
{
"ingredient": "spider_silk",
"amount": 1
}
],
"output": {
"item": "fabric",
"amount": 1
},
"workstation": "loom",
"texture": "res://Assets/Images/Items/RopeSymbol.png",
"research": "copperage"
},
{
"id": "copper_rod",
"inputs": [
{
"ingredient": "copper_ingot",
"amount": 1
}
],
"output": {
"item": "copper_rod",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/CopperRodSymbol.png",
"research": "copperage"
},
{
"id": "tin_rod",
"inputs": [
{
"ingredient": "tin_ingot",
"amount": 1
}
],
"output": {
"item": "tin_rod",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/TinRodSymbol.png",
"research": "copperage"
},
{
"id": "bronze_rod",
"inputs": [
{
"ingredient": "bronze_ingot",
"amount": 1
}
],
"output": {
"item": "bronze_rod",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/BronzeRodSymbol.png",
"research": "bronzeage"
},
{
"id": "iron_rod",
"inputs": [
{
"ingredient": "iron_ingot",
"amount": 1
}
],
"output": {
"item": "iron_rod",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/IronRodSymbol.png",
"research": "ironage"
},
{
"id": "battery_v1",
"inputs": [
{
"ingredient": "copper_rod",
"amount": 1
},
{
"ingredient": "tin_rod",
"amount": 1
},
{
"ingredient": "water",
"amount": 1
}
],
"output": {
"item": "battery_v1",
"amount": 1
},
"workstation": "workbench",
"texture": "res://Assets/Images/Items/Batteryv1Symbol.png",
"research": "copperage"
},
{
"id": "dynamo_v1",
"inputs": [
{
"ingredient": "battery_v1",
"amount": 1
},
{
"ingredient": "tin_rod",
"amount": 1
},
{
"ingredient": "copper_wire",
"amount": 1
}
],
"output": {
"item": "dynamo_v1",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/Dynamov1Symbol.png",
"research": "copperage"
},
{
"id": "copper_wire",
"inputs": [
{
"ingredient": "copper_ingot",
"amount": 1
}
],
"output": {
"item": "copper_wire",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/CopperWireSymbol.png",
"research": "copperage"
},
{
"id": "heating_element_v1",
"inputs": [
{
"ingredient": "stone",
"amount": 1
}
],
"output": {
"item": "heating_element_v1",
"amount": 1
},
"workstation": "workbench",
"texture": "res://Assets/Images/Items/Heaterv1Symbol.png",
"research": "stoneage"
},
{
"id": "stone_plate",
"inputs": [
{
"ingredient": "stone",
"amount": 1
}
],
"output": {
"item": "stone_plate",
"amount": 1
},
"workstation": "workbench",
"texture": "res://Assets/Images/Items/StonePlateSymbol.png",
"research": "stoneage"
},
{
"id": "copper_plate",
"inputs": [
{
"ingredient": "copper_ingot",
"amount": 1
}
],
"output": {
"item": "copper_plate",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/CopperPlateSymbol.png",
"research": "copperage"
},
{
"id": "iron_plate",
"inputs": [
{
"ingredient": "iron_ingot",
"amount": 1
}
],
"output": {
"item": "iron_plate",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/IronPlateSymbol.png",
"research": "ironage"
},
{
"id": "bronze_plate",
"inputs": [
{
"ingredient": "bronze_ingot",
"amount": 1
}
],
"output": {
"item": "bronze_plate",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/BronzePlateSymbol.png",
"research": "bronzeage"
},
{
"id": "tin_plate",
"inputs": [
{
"ingredient": "tin_ingot",
"amount": 1
}
],
"output": {
"item": "tin_plate",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/TinPlateSymbol.png",
"research": "copperage"
},
{
"id": "battery_v2",
"inputs": [
{
"ingredient": "iron_rod",
"amount": 1
},
{
"ingredient": "copper_rod",
"amount": 1
},
{
"ingredient": "water",
"amount": 1
}
],
"output": {
"item": "battery_v2",
"amount": 1
},
"workstation": "workbench",
"texture": "res://Assets/Images/Items/Batteryv2Symbol.png",
"research": "ironage"
},
{
"id": "dynamo_v2",
"inputs": [
{
"ingredient": "battery_v2",
"amount": 1
},
{
"ingredient": "iron_rod",
"amount": 1
},
{
"ingredient": "copper_wire",
"amount": 1
},
{
"ingredient": "tin_plate",
"amount": 1
}
],
"output": {
"item": "dynamo_v2",
"amount": 1
},
"workstation": "anvil",
"texture": "res://Assets/Images/Items/Dynamov2Symbol.png",
"research": "ironage"
},
{
"id": "steam",
"inputs": [
{
"ingredient": "water",
"amount": 1
},
{
"ingredient": "coal",
"amount": 1
}
],
"output": {
"item": "steam",
"amount": 1
},
"workstation": "steam_generator_v1",
"texture": "res://Assets/Images/Items/SteamSymbol.png",
"research": "copperage"
},
{
"id": "glass_bottles",
"inputs": [
{
"ingredient": "glass",
"amount": 1
},
{
"ingredient": "coal",
"amount": 1
}
],
"output": {
"item": "glass_bottles",
"amount": 1
},
"workstation": "glassblower",
"texture": "res://Assets/Images/Items/GlassBottleSymbol.png",
"research": "stoneage"
}
]