Improved recipes and added resources to it. Changed how ingredients and items work.
This commit is contained in:
+155
-78
@@ -1,9 +1,97 @@
|
||||
[
|
||||
{
|
||||
"id": "iron_ore",
|
||||
"inputs": [],
|
||||
"output": {
|
||||
"item": "iron_ore",
|
||||
"amount": 1
|
||||
},
|
||||
"workstation": "",
|
||||
"texture": "res://Assets/Images/Resources/IronSymbol.png",
|
||||
"research": "bronzeage"
|
||||
},
|
||||
{
|
||||
"id": "tin_ore",
|
||||
"inputs": [],
|
||||
"output": {
|
||||
"item": "tin_ore",
|
||||
"amount": 1
|
||||
},
|
||||
"workstation": "",
|
||||
"texture": "res://Assets/Images/Resources/TinSymbol.png",
|
||||
"research": "copperage"
|
||||
},
|
||||
{
|
||||
"id": "copper_ore",
|
||||
"inputs": [],
|
||||
"output": {
|
||||
"item": "copper_ore",
|
||||
"amount": 1
|
||||
},
|
||||
"workstation": "",
|
||||
"texture": "res://Assets/Images/Resources/CopperSymbol.png",
|
||||
"research": "stoneage"
|
||||
},
|
||||
{
|
||||
"id": "mushroom",
|
||||
"inputs": [],
|
||||
"output": {
|
||||
"item": "mushroom",
|
||||
"amount": 1
|
||||
},
|
||||
"workstation": "",
|
||||
"texture": "res://Assets/Images/Resources/MushroomSymbol.png",
|
||||
"research": "basics"
|
||||
},
|
||||
{
|
||||
"id": "spider_silk",
|
||||
"inputs": [],
|
||||
"output": {
|
||||
"item": "spider_silk",
|
||||
"amount": 1
|
||||
},
|
||||
"workstation": "",
|
||||
"texture": "res://Assets/Images/Resources/SpiderSilkSymbol.png",
|
||||
"research": "basics"
|
||||
},
|
||||
{
|
||||
"id": "coal",
|
||||
"inputs": [],
|
||||
"output": {
|
||||
"item": "coal",
|
||||
"amount": 1
|
||||
},
|
||||
"workstation": "",
|
||||
"texture": "res://Assets/Images/Resources/CoalSymbol.png",
|
||||
"research": "basics"
|
||||
},
|
||||
{
|
||||
"id": "water",
|
||||
"inputs": [],
|
||||
"output": {
|
||||
"item": "water",
|
||||
"amount": 1
|
||||
},
|
||||
"workstation": "",
|
||||
"texture": "res://Assets/Images/Resources/WaterSymbol.png",
|
||||
"research": "basics"
|
||||
},
|
||||
{
|
||||
"id": "stone",
|
||||
"inputs": [],
|
||||
"output": {
|
||||
"item": "stone",
|
||||
"amount": 1
|
||||
},
|
||||
"workstation": "",
|
||||
"texture": "res://Assets/Images/Resources/StoneSymbol.png",
|
||||
"research": "basics"
|
||||
},
|
||||
{
|
||||
"id": "sand",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "stone",
|
||||
"item": "stone",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -19,7 +107,7 @@
|
||||
"id": "stone_gear",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "stone",
|
||||
"item": "stone",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -35,7 +123,7 @@
|
||||
"id": "copper_gear",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "copper_ingot",
|
||||
"item": "copper_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -51,7 +139,7 @@
|
||||
"id": "tin_gear",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "tin_ingot",
|
||||
"item": "tin_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -67,7 +155,7 @@
|
||||
"id": "bronze_gear",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "bronze_ingot",
|
||||
"item": "bronze_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -83,15 +171,15 @@
|
||||
"id": "bronze_ingot",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "tin_ingot",
|
||||
"item": "tin_ingot",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "copper_ingot",
|
||||
"item": "copper_ingot",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "coal",
|
||||
"item": "coal",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -107,7 +195,7 @@
|
||||
"id": "iron_gear",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "iron_ingot",
|
||||
"item": "iron_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -123,11 +211,11 @@
|
||||
"id": "iron_ingot",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "iron_ore",
|
||||
"item": "iron_ore",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "coal",
|
||||
"item": "coal",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -143,11 +231,11 @@
|
||||
"id": "tin_ingot",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "tin_ore",
|
||||
"item": "tin_ore",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "coal",
|
||||
"item": "coal",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -163,11 +251,11 @@
|
||||
"id": "copper_ingot",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "copper_ore",
|
||||
"item": "copper_ore",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "coal",
|
||||
"item": "coal",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -183,7 +271,7 @@
|
||||
"id": "rope",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "spider_silk",
|
||||
"item": "spider_silk",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -195,30 +283,19 @@
|
||||
"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",
|
||||
"item": "stone",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "rope",
|
||||
"item": "rope",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "stone_gear",
|
||||
"item": "stone_gear",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -234,19 +311,19 @@
|
||||
"id": "copper_robot",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "copper_plate",
|
||||
"item": "copper_plate",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "rope",
|
||||
"item": "rope",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "copper_gear",
|
||||
"item": "copper_gear",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "battery_v1",
|
||||
"item": "battery_v1",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -262,19 +339,19 @@
|
||||
"id": "tin_robot",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "tin_plate",
|
||||
"item": "tin_plate",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "rope",
|
||||
"item": "rope",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "tin_gear",
|
||||
"item": "tin_gear",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "battery_v1",
|
||||
"item": "battery_v1",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -290,19 +367,19 @@
|
||||
"id": "bronze_robot",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "bronze_plate",
|
||||
"item": "bronze_plate",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "rope",
|
||||
"item": "rope",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "bronze_gear",
|
||||
"item": "bronze_gear",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "battery_v1",
|
||||
"item": "battery_v1",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -318,19 +395,19 @@
|
||||
"id": "iron_robot",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "iron_plate",
|
||||
"item": "iron_plate",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "rope",
|
||||
"item": "rope",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "iron_gear",
|
||||
"item": "iron_gear",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "battery_v2",
|
||||
"item": "battery_v2",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -346,11 +423,11 @@
|
||||
"id": "glass",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "sand",
|
||||
"item": "sand",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "coal",
|
||||
"item": "coal",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -366,11 +443,11 @@
|
||||
"id": "fabric",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "rope",
|
||||
"item": "rope",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "spider_silk",
|
||||
"item": "spider_silk",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -386,7 +463,7 @@
|
||||
"id": "copper_rod",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "copper_ingot",
|
||||
"item": "copper_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -402,7 +479,7 @@
|
||||
"id": "tin_rod",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "tin_ingot",
|
||||
"item": "tin_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -418,7 +495,7 @@
|
||||
"id": "bronze_rod",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "bronze_ingot",
|
||||
"item": "bronze_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -434,7 +511,7 @@
|
||||
"id": "iron_rod",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "iron_ingot",
|
||||
"item": "iron_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -450,15 +527,15 @@
|
||||
"id": "battery_v1",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "copper_rod",
|
||||
"item": "copper_rod",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "tin_rod",
|
||||
"item": "tin_rod",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "water",
|
||||
"item": "water",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -474,15 +551,15 @@
|
||||
"id": "dynamo_v1",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "battery_v1",
|
||||
"item": "battery_v1",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "tin_rod",
|
||||
"item": "tin_rod",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "copper_wire",
|
||||
"item": "copper_wire",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -498,7 +575,7 @@
|
||||
"id": "copper_wire",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "copper_ingot",
|
||||
"item": "copper_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -514,7 +591,7 @@
|
||||
"id": "heating_element_v1",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "stone",
|
||||
"item": "stone",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -530,7 +607,7 @@
|
||||
"id": "stone_plate",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "stone",
|
||||
"item": "stone",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -546,7 +623,7 @@
|
||||
"id": "copper_plate",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "copper_ingot",
|
||||
"item": "copper_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -562,7 +639,7 @@
|
||||
"id": "iron_plate",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "iron_ingot",
|
||||
"item": "iron_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -578,7 +655,7 @@
|
||||
"id": "bronze_plate",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "bronze_ingot",
|
||||
"item": "bronze_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -594,7 +671,7 @@
|
||||
"id": "tin_plate",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "tin_ingot",
|
||||
"item": "tin_ingot",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -610,15 +687,15 @@
|
||||
"id": "battery_v2",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "iron_rod",
|
||||
"item": "iron_rod",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "copper_rod",
|
||||
"item": "copper_rod",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "water",
|
||||
"item": "water",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -634,19 +711,19 @@
|
||||
"id": "dynamo_v2",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "battery_v2",
|
||||
"item": "battery_v2",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "iron_rod",
|
||||
"item": "iron_rod",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "copper_wire",
|
||||
"item": "copper_wire",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "tin_plate",
|
||||
"item": "tin_plate",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -662,11 +739,11 @@
|
||||
"id": "steam",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "water",
|
||||
"item": "water",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "coal",
|
||||
"item": "coal",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
@@ -682,11 +759,11 @@
|
||||
"id": "glass_bottles",
|
||||
"inputs": [
|
||||
{
|
||||
"ingredient": "glass",
|
||||
"item": "glass",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"ingredient": "coal",
|
||||
"item": "coal",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user