Files
Godot-test/data/config/production_lines.json

152 lines
3.2 KiB
JSON

{
"ProductionLines": [
{
"id": "iron_ore_extraction",
"name": "铁矿采集",
"category": "资源采集",
"description": "自动采集铁矿石",
"productionTime": 2.0,
"powerConsumption": 10,
"buildingRequirements": [
{
"itemId": "mining_drill",
"quantity": 1
}
],
"recipe": {
"inputs": [],
"outputs": [
{
"itemId": "iron_ore",
"quantity": 1
}
]
}
},
{
"id": "copper_ore_extraction",
"name": "铜矿采集",
"category": "资源采集",
"description": "自动采集铜矿石",
"productionTime": 2.0,
"powerConsumption": 10,
"buildingRequirements": [
{
"itemId": "mining_drill",
"quantity": 1
}
],
"recipe": {
"inputs": [],
"outputs": [
{
"itemId": "copper_ore",
"quantity": 1
}
]
}
},
{
"id": "coal_extraction",
"name": "煤矿采集",
"category": "资源采集",
"description": "自动采集煤炭",
"productionTime": 1.5,
"powerConsumption": 8,
"buildingRequirements": [
{
"itemId": "mining_drill",
"quantity": 1
}
],
"recipe": {
"inputs": [],
"outputs": [
{
"itemId": "coal_ore",
"quantity": 1
}
]
}
},
{
"id": "stone_extraction",
"name": "石矿采集",
"category": "资源采集",
"description": "自动采集石头",
"productionTime": 1.8,
"powerConsumption": 8,
"buildingRequirements": [
{
"itemId": "mining_drill",
"quantity": 1
}
],
"recipe": {
"inputs": [],
"outputs": [
{
"itemId": "stone_ore",
"quantity": 1
}
]
}
},
{
"id": "iron_smelting_auto",
"name": "自动冶炼铁块",
"category": "冶炼加工",
"description": "使用冶炼炉自动生产铁块",
"productionTime": 3.2,
"powerConsumption": 15,
"buildingRequirements": [
{
"itemId": "furnace",
"quantity": 1
}
],
"recipe": {
"inputs": [
{
"itemId": "iron_ore",
"quantity": 1
}
],
"outputs": [
{
"itemId": "iron_ingot",
"quantity": 1
}
]
}
},
{
"id": "copper_smelting_auto",
"name": "自动冶炼铜块",
"category": "冶炼加工",
"description": "使用冶炼炉自动生产铜块",
"productionTime": 3.2,
"powerConsumption": 15,
"buildingRequirements": [
{
"itemId": "furnace",
"quantity": 1
}
],
"recipe": {
"inputs": [
{
"itemId": "copper_ore",
"quantity": 1
}
],
"outputs": [
{
"itemId": "copper_ingot",
"quantity": 1
}
]
}
}
]
}