生产线样式,添加图标测试
This commit is contained in:
@ -12,6 +12,104 @@
|
||||
"quantity": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "copper_ingot_smelting",
|
||||
"outputItem": "copper_ingot",
|
||||
"outputQuantity": 1,
|
||||
"craftingMethod": "冶炼",
|
||||
"craftingTime": 1.0,
|
||||
"ingredients": [
|
||||
{
|
||||
"itemId": "copper_ore",
|
||||
"quantity": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "magnet_crafting",
|
||||
"outputItem": "magnet",
|
||||
"outputQuantity": 1,
|
||||
"craftingMethod": "制作",
|
||||
"craftingTime": 1.5,
|
||||
"ingredients": [
|
||||
{
|
||||
"itemId": "iron_ore",
|
||||
"quantity": 2
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "gear_crafting",
|
||||
"outputItem": "gear",
|
||||
"outputQuantity": 1,
|
||||
"craftingMethod": "制作",
|
||||
"craftingTime": 2.0,
|
||||
"ingredients": [
|
||||
{
|
||||
"itemId": "iron_ingot",
|
||||
"quantity": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "magnetic_coil_crafting",
|
||||
"outputItem": "magnetic_coil",
|
||||
"outputQuantity": 2,
|
||||
"craftingMethod": "制作",
|
||||
"craftingTime": 3.0,
|
||||
"ingredients": [
|
||||
{
|
||||
"itemId": "magnet",
|
||||
"quantity": 2
|
||||
},
|
||||
{
|
||||
"itemId": "copper_ingot",
|
||||
"quantity": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "circuit_board_crafting",
|
||||
"outputItem": "circuit_board",
|
||||
"outputQuantity": 2,
|
||||
"craftingMethod": "制作",
|
||||
"craftingTime": 2.5,
|
||||
"ingredients": [
|
||||
{
|
||||
"itemId": "iron_ingot",
|
||||
"quantity": 2
|
||||
},
|
||||
{
|
||||
"itemId": "copper_ingot",
|
||||
"quantity": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "miner_crafting",
|
||||
"outputItem": "miner",
|
||||
"outputQuantity": 1,
|
||||
"craftingMethod": "组装",
|
||||
"craftingTime": 8.0,
|
||||
"ingredients": [
|
||||
{
|
||||
"itemId": "iron_ingot",
|
||||
"quantity": 4
|
||||
},
|
||||
{
|
||||
"itemId": "circuit_board",
|
||||
"quantity": 2
|
||||
},
|
||||
{
|
||||
"itemId": "magnetic_coil",
|
||||
"quantity": 2
|
||||
},
|
||||
{
|
||||
"itemId": "gear",
|
||||
"quantity": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -18,12 +18,20 @@
|
||||
"copper_ingot"
|
||||
]
|
||||
},
|
||||
{
|
||||
"categoryName": "制作物品",
|
||||
"items": [
|
||||
"magnet",
|
||||
"gear",
|
||||
"magnetic_coil",
|
||||
"circuit_board"
|
||||
]
|
||||
},
|
||||
{
|
||||
"categoryName": "建筑设施",
|
||||
"items": [
|
||||
"mining_drill",
|
||||
"furnace",
|
||||
"smelter",
|
||||
"miner",
|
||||
"assembler",
|
||||
"chemical_plant"
|
||||
|
||||
@ -5,9 +5,13 @@ stone_ore,石矿,RawMaterial,基础建筑材料,可用于建造建筑,null,0,0
|
||||
coal_ore,煤矿,RawMaterial,重要的能源资源,可用于发电,null,0,0,res://assets/textures/items/coal_ore.png
|
||||
water,水,RawMaterial,基础资源,可用于多种生产,null,0,0,res://assets/textures/items/water.png
|
||||
crude_oil,原油,RawMaterial,重要的能源资源,可用于生产燃料,null,0,0,res://assets/textures/items/crude_oil.png
|
||||
iron_ingot,铁块,ProcessedMaterial,由铁矿冶炼而成的基础材料,iron_ore:1,1.0,60.0,res://assets/textures/items/iron_ingot.png
|
||||
copper_ingot,铜块,ProcessedMaterial,由铜矿冶炼而成的基础材料,copper_ore:1,1.0,60.0,res://assets/textures/items/copper_ingot.png
|
||||
mining_drill,钻机,Building,自动采集矿石的钻探设备,iron_ingot:5;copper_ingot:3,4.0,300.0,res://assets/textures/buildings/mining_drill.png
|
||||
iron_ingot,铁块,ProcessedMaterial,由铁矿冶炼而成的基础材料,iron_ore:1,1.0,60.0,res://assets/textures/items/铁块.tres
|
||||
copper_ingot,铜块,ProcessedMaterial,由铜矿冶炼而成的基础材料,copper_ore:1,1.0,60.0,res://assets/textures/items/铜块.tres
|
||||
magnet,磁铁,ProcessedMaterial,由铁矿制作的磁性材料,用于制造电机等设备,iron_ore:2,1.5,0,res://assets/textures/items/magnet.png
|
||||
gear,齿轮,ProcessedMaterial,由铁块制作的机械部件,用于制造复杂设备,iron_ingot:1,2.0,0,res://assets/textures/items/gear.png
|
||||
magnetic_coil,磁线圈,Component,由磁铁和铜块制作的电磁组件,用于制造高级设备,magnet:2;copper_ingot:1,3.0,0,res://assets/textures/items/magnetic_coil.png
|
||||
circuit_board,电路板,Component,由铁块和铜块制作的电子组件,用于制造高级设备,iron_ingot:2;copper_ingot:1,2.5,0,res://assets/textures/items/circuit_board.png
|
||||
drill_machine,钻机,ProductionDevice,由多种组件制作的高级钻探设备,效率更高,iron_ingot:4;circuit_board:2;magnetic_coil:2;gear:2,8.0,500.0,res://assets/textures/items/drill_machine.png
|
||||
furnace,熔炉,Building,自动冶炼矿石的熔炉设备,iron_ingot:4;stone_ore:2,3.5,250.0,res://assets/textures/buildings/furnace.png
|
||||
smelter,冶炼厂,Building,用于冶炼矿石的基础建筑,iron_ingot:4;copper_ingot:2,3.0,360.0,res://assets/textures/buildings/smelter.png
|
||||
miner,采矿机,Building,自动采集矿石的基础建筑,iron_ingot:3;copper_ingot:1,2.0,420.0,res://assets/textures/buildings/miner.png
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
"powerConsumption": 10,
|
||||
"buildingRequirements": [
|
||||
{
|
||||
"itemId": "mining_drill",
|
||||
"itemId": "miner",
|
||||
"quantity": 1
|
||||
}
|
||||
],
|
||||
@ -32,7 +32,7 @@
|
||||
"powerConsumption": 10,
|
||||
"buildingRequirements": [
|
||||
{
|
||||
"itemId": "mining_drill",
|
||||
"itemId": "miner",
|
||||
"quantity": 1
|
||||
}
|
||||
],
|
||||
@ -55,7 +55,7 @@
|
||||
"powerConsumption": 8,
|
||||
"buildingRequirements": [
|
||||
{
|
||||
"itemId": "mining_drill",
|
||||
"itemId": "miner",
|
||||
"quantity": 1
|
||||
}
|
||||
],
|
||||
@ -78,7 +78,7 @@
|
||||
"powerConsumption": 8,
|
||||
"buildingRequirements": [
|
||||
{
|
||||
"itemId": "mining_drill",
|
||||
"itemId": "miner",
|
||||
"quantity": 1
|
||||
}
|
||||
],
|
||||
|
||||
@ -33,15 +33,23 @@
|
||||
"copper_ingot"
|
||||
]
|
||||
},
|
||||
{
|
||||
"categoryName": "制作物品",
|
||||
"itemIds": [
|
||||
"magnet",
|
||||
"gear",
|
||||
"magnetic_coil",
|
||||
"circuit_board"
|
||||
]
|
||||
},
|
||||
{
|
||||
"categoryName": "建筑设施",
|
||||
"itemIds": [
|
||||
"mining_drill",
|
||||
"furnace",
|
||||
"smelter",
|
||||
"miner",
|
||||
"assembler",
|
||||
"chemical_plant"
|
||||
"chemical_plant",
|
||||
"miner"
|
||||
]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user