diff --git a/src/components/ItemRecipeSelect.tsx b/src/components/ItemRecipeSelect.tsx index 14ba0f4..dc1a803 100644 --- a/src/components/ItemRecipeSelect.tsx +++ b/src/components/ItemRecipeSelect.tsx @@ -1,17 +1,15 @@ import { computed, defineComponent, watch, type PropType } from 'vue' +import { useI18n } from 'vue-i18n' import { NSelect, type SelectRenderLabel, type SelectRenderTag } from 'naive-ui' import BuildingImage from '@/components/BuildingImage' import ItemImage from '@/components/ItemImage' import type { Id } from '@/types' -import { getBuildingById, getItemById, getRecipeById, recipes } from '@/data' +import { getRecipeById, recipes } from '@/data' + +const renderItem = (itemId: Id, quantity: number, perMinute: number) => { + const { t } = useI18n() -const renderItem = ( - itemId: Id, - itemName: string, - quantity: number, - perMinute: number, -) => { return (
- {itemName} + {t(`items.${itemId}`)}
{quantity}({perMinute}/min) @@ -30,22 +28,9 @@ const renderItem = ( } const renderLabel: SelectRenderLabel = (option) => { - const recipe = getRecipeById(option.value as Id) - const building = getBuildingById(recipe.producedIn) - - const inputs = recipe.inputs.map(({ itemId, ...data }) => { - return { - ...data, - item: getItemById(itemId), - } - }) + const { t } = useI18n() - const outputs = recipe.outputs.map(({ itemId, ...data }) => { - return { - ...data, - item: getItemById(itemId), - } - }) + const recipe = getRecipeById(option.value as Id) return (
@@ -55,14 +40,16 @@ const renderLabel: SelectRenderLabel = (option) => { sizes={[48, 96, 144]} formats={['avif', 'webp', 'png']} /> -
{building.name}
+
+ {t(`buildings.${recipe.producedIn}`)} +
-
{recipe.name}
+
{option.label}
- {inputs.map(({ item, quantity, quantityPerMinute: perMinute }) => - renderItem(item.id, item.name, quantity, perMinute), + {recipe.inputs.map(({ itemId, quantity, quantityPerMinute }) => + renderItem(itemId, quantity, quantityPerMinute), )}
@@ -70,8 +57,8 @@ const renderLabel: SelectRenderLabel = (option) => {
{recipe.productionDuration}s
- {outputs.map(({ item, quantity, quantityPerMinute: perMinute }) => - renderItem(item.id, item.name, quantity, perMinute), + {recipe.outputs.map(({ itemId, quantity, quantityPerMinute }) => + renderItem(itemId, quantity, quantityPerMinute), )}
@@ -92,15 +79,17 @@ export default defineComponent({ 'update:value': (value: Id | null) => true, }, setup(props, { emit }) { + const { t } = useI18n() + const options = computed(() => { if (props.itemId) { return recipes .filter(({ outputs }) => { return outputs.some(({ itemId }) => itemId === props.itemId) }) - .map(({ id, name }) => { + .map(({ id }) => { return { - label: name, + label: t(`recipes.${id}`), value: id, } }) diff --git a/src/components/ItemSelect.tsx b/src/components/ItemSelect.tsx index 79fb68a..c9f1ba1 100644 --- a/src/components/ItemSelect.tsx +++ b/src/components/ItemSelect.tsx @@ -1,18 +1,21 @@ import { defineComponent, type PropType } from 'vue' +import { useI18n } from 'vue-i18n' import { NFlex, NSelect, type SelectRenderLabel } from 'naive-ui' import ItemImage from '@/components/ItemImage' import type { Id } from '@/types' import { items } from '@/data' -const options = items.map(({ id, name }) => { +const options = items.map(({ id }) => { return { - label: name, + label: id, value: id, } }) const renderLabel: SelectRenderLabel = (option) => { + const { t } = useI18n() + return ( { formats={['avif', 'webp', 'png']} />
- {option.label} + {t(`items.${option.label}`)}
) diff --git a/src/data/buildings.json b/src/data/buildings.json index 366d09d..61ef5e7 100644 --- a/src/data/buildings.json +++ b/src/data/buildings.json @@ -1,57 +1,46 @@ [ { "id": "Constructor", - "name": "构筑站", "powerUsage": 4 }, { "id": "Assembler", - "name": "装配站", "powerUsage": 15 }, { "id": "Manufacturer", - "name": "制造站", "powerUsage": 55 }, { "id": "Packager", - "name": "灌装站", "powerUsage": 10 }, { "id": "Refinery", - "name": "精炼站", "powerUsage": 30 }, { "id": "Blender", - "name": "混料站", "powerUsage": 75 }, { "id": "Particle_Accelerator", - "name": "粒子加速器", "powerUsage": "variable" }, { "id": "Converter", - "name": "转化站", "powerUsage": "variable" }, { "id": "Quantum_Encoder", - "name": "量子编码站", "powerUsage": "variable" }, { "id": "Smelter", - "name": "冶炼站", "powerUsage": 4 }, { "id": "Foundry", - "name": "铸造站", "powerUsage": 16 } ] diff --git a/src/data/index.ts b/src/data/index.ts index 6301ecf..0105c9d 100644 --- a/src/data/index.ts +++ b/src/data/index.ts @@ -11,7 +11,6 @@ export const items: Item[] = itemsJson as Item[] export const recipes = recipesJson.map( ({ id, - name, inputs, outputs, producedIn, @@ -20,7 +19,6 @@ export const recipes = recipesJson.map( }): Recipe => { return { id, - name, inputs: inputs.map(({ itemId, quantity }) => { return { itemId, diff --git a/src/data/items.json b/src/data/items.json index 06454f7..68f4da1 100644 --- a/src/data/items.json +++ b/src/data/items.json @@ -1,614 +1,461 @@ [ { - "id": "Iron_Ingot", - "name": "铁锭" + "id": "Iron_Ingot" }, { - "id": "Iron_Ore", - "name": "铁矿石" + "id": "Iron_Ore" }, { - "id": "Iron_Plate", - "name": "铁板" + "id": "Iron_Plate" }, { - "id": "Iron_Rod", - "name": "铁棒" + "id": "Iron_Rod" }, { - "id": "Reinforced_Iron_Plate", - "name": "强化铁板" + "id": "Reinforced_Iron_Plate" }, { - "id": "Cable", - "name": "电缆" + "id": "Cable" }, { - "id": "Wire", - "name": "电线" + "id": "Wire" }, { - "id": "Copper_Ingot", - "name": "铜锭" + "id": "Copper_Ingot" }, { - "id": "Copper_Ore", - "name": "铜矿石" + "id": "Copper_Ore" }, { - "id": "Concrete", - "name": "混凝土" + "id": "Concrete" }, { - "id": "Limestone", - "name": "石灰石" + "id": "Limestone" }, { - "id": "Screw", - "name": "螺丝" + "id": "Screw" }, { - "id": "Biomass", - "name": "生物质" + "id": "Biomass" }, { - "id": "Wood", - "name": "木材" + "id": "Wood" }, { - "id": "Leaves", - "name": "树叶" + "id": "Leaves" }, { - "id": "Alien_Protein", - "name": "外星生物蛋白质" + "id": "Alien_Protein" }, { - "id": "Hog_Remains", - "name": "野猪残骸" + "id": "Hog_Remains" }, { - "id": "Solid_Biofuel", - "name": "固态生物燃料" + "id": "Solid_Biofuel" }, { - "id": "Rotor", - "name": "转子" + "id": "Rotor" }, { - "id": "Copper_Sheet", - "name": "铜板" + "id": "Copper_Sheet" }, { - "id": "Modular_Frame", - "name": "模块化框架" + "id": "Modular_Frame" }, { - "id": "Smart_Plating", - "name": "智能嵌板" + "id": "Smart_Plating" }, { - "id": "Power_Shard", - "name": "能量碎片" + "id": "Power_Shard" }, { - "id": "Blue_Power_Slug", - "name": "蓝色能量蛞蝓" + "id": "Blue_Power_Slug" }, { - "id": "Mycelia", - "name": "菌丝体" + "id": "Mycelia" }, { - "id": "Steel_Ingot", - "name": "钢锭" + "id": "Steel_Ingot" }, { - "id": "Coal", - "name": "煤" + "id": "Coal" }, { - "id": "Steel_Beam", - "name": "钢梁" + "id": "Steel_Beam" }, { - "id": "Steel_Pipe", - "name": "钢管" + "id": "Steel_Pipe" }, { - "id": "Versatile_Framework", - "name": "多功能框架" + "id": "Versatile_Framework" }, { - "id": "Stinger_Remains", - "name": "刺蛛残骸" + "id": "Stinger_Remains" }, { - "id": "Silica", - "name": "二氧化硅" + "id": "Silica" }, { - "id": "Raw_Quartz", - "name": "粗石英" + "id": "Raw_Quartz" }, { - "id": "Yellow_Power_Slug", - "name": "黄色能量蛞蝓" + "id": "Yellow_Power_Slug" }, { - "id": "Hatcher_Remains", - "name": "孵化巢残骸" + "id": "Hatcher_Remains" }, { - "id": "Spitter_Remains", - "name": "吐射兽残骸" + "id": "Spitter_Remains" }, { - "id": "Alien_DNA_Capsule", - "name": "外星DNA胶囊" + "id": "Alien_DNA_Capsule" }, { - "id": "Black_Powder", - "name": "黑火药" + "id": "Black_Powder" }, { - "id": "Sulfur", - "name": "硫磺" + "id": "Sulfur" }, { - "id": "Fabric", - "name": "纤维织物" + "id": "Fabric" }, { - "id": "Iron_Rebar", - "name": "铁棒弹" + "id": "Iron_Rebar" }, { - "id": "Gas_Filter", - "name": "气体过滤器" + "id": "Gas_Filter" }, { - "id": "Nobelisk", - "name": "诺氏雷筒" + "id": "Nobelisk" }, { - "id": "Quartz_Crystal", - "name": "石英晶体" + "id": "Quartz_Crystal" }, { - "id": "Crystal_Oscillator", - "name": "晶体振荡器" + "id": "Crystal_Oscillator" }, { - "id": "Shatter_Rebar", - "name": "散射铁棒弹" + "id": "Shatter_Rebar" }, { - "id": "Encased_Industrial_Beam", - "name": "钢筋混凝土梁" + "id": "Encased_Industrial_Beam" }, { - "id": "Stator", - "name": "定子" + "id": "Stator" }, { - "id": "Motor", - "name": "马达" + "id": "Motor" }, { - "id": "Automated_Wiring", - "name": "自动化线缆" + "id": "Automated_Wiring" }, { - "id": "Gas_Nobelisk", - "name": "毒气诺石" + "id": "Gas_Nobelisk" }, { - "id": "Purple_Power_Slug", - "name": "紫色能量蛞蝓" + "id": "Purple_Power_Slug" }, { - "id": "Reanimated_SAM", - "name": "活性SAM物质" + "id": "Reanimated_SAM" }, { - "id": "SAM", - "name": "SAM物质" + "id": "SAM" }, { - "id": "Caterium_Ingot", - "name": "钦金锭" + "id": "Caterium_Ingot" }, { - "id": "Caterium_Ore", - "name": "钦金矿石" + "id": "Caterium_Ore" }, { - "id": "SAM_Fluctuator", - "name": "SAM物质波波动器" + "id": "SAM_Fluctuator" }, { - "id": "Mercer_Sphere", - "name": "梅瑟尔球" + "id": "Mercer_Sphere" }, { - "id": "Quickwire", - "name": "急速电线" + "id": "Quickwire" }, { - "id": "Stun_Rebar", - "name": "电击铁棒弹" + "id": "Stun_Rebar" }, { - "id": "AI_Limiter", - "name": "AI限制器" + "id": "AI_Limiter" }, { - "id": "Petroleum_Coke", - "name": "石油焦" + "id": "Petroleum_Coke" }, { - "id": "Heavy_Oil_Residue", - "name": "重油残渣" + "id": "Heavy_Oil_Residue" }, { - "id": "Circuit_Board", - "name": "电路板" + "id": "Circuit_Board" }, { - "id": "Plastic", - "name": "塑料" + "id": "Plastic" }, { - "id": "Polymer_Resin", - "name": "聚合树脂" + "id": "Polymer_Resin" }, { - "id": "Water", - "name": "水" + "id": "Water" }, { - "id": "Rubber", - "name": "橡胶" + "id": "Rubber" }, { - "id": "Fuel", - "name": "燃料" + "id": "Fuel" }, { - "id": "Crude_Oil", - "name": "原油" + "id": "Crude_Oil" }, { - "id": "High-Speed_Connector", - "name": "高速连接器" + "id": "High-Speed_Connector" }, { - "id": "Empty_Canister", - "name": "空桶" + "id": "Empty_Canister" }, { - "id": "Packaged_Water", - "name": "桶装水" + "id": "Packaged_Water" }, { - "id": "Packaged_Oil", - "name": "桶装原油" + "id": "Packaged_Oil" }, { - "id": "Packaged_Fuel", - "name": "桶装燃油" + "id": "Packaged_Fuel" }, { - "id": "Packaged_Heavy_Oil_Residue", - "name": "桶装重油残渣" + "id": "Packaged_Heavy_Oil_Residue" }, { - "id": "Packaged_Liquid_Biofuel", - "name": "桶装液态生物燃料" + "id": "Packaged_Liquid_Biofuel" }, { - "id": "Liquid_Biofuel", - "name": "液态生物燃料" + "id": "Liquid_Biofuel" }, { - "id": "Computer", - "name": "计算机" + "id": "Computer" }, { - "id": "Heavy_Modular_Frame", - "name": "重型模块化框架" + "id": "Heavy_Modular_Frame" }, { - "id": "Modular_Engine", - "name": "模块化引擎" + "id": "Modular_Engine" }, { - "id": "Adaptive_Control_Unit", - "name": "自适应控制单元" + "id": "Adaptive_Control_Unit" }, { - "id": "Smokeless_Powder", - "name": "无烟火药" + "id": "Smokeless_Powder" }, { - "id": "Somersloop", - "name": "索莫晶体" + "id": "Somersloop" }, { - "id": "Pulse_Nobelisk", - "name": "脉冲诺石" + "id": "Pulse_Nobelisk" }, { - "id": "Rifle_Ammo", - "name": "步枪弹药" + "id": "Rifle_Ammo" }, { - "id": "Alclad_Aluminum_Sheet", - "name": "复合铝板" + "id": "Alclad_Aluminum_Sheet" }, { - "id": "Iodine-Infused_Filter", - "name": "碘化过滤器" + "id": "Iodine-Infused_Filter" }, { - "id": "Aluminum_Casing", - "name": "铝制外壳" + "id": "Aluminum_Casing" }, { - "id": "Cluster_Nobelisk", - "name": "集束诺氏雷筒" + "id": "Cluster_Nobelisk" }, { - "id": "Homing_Rifle_Ammo", - "name": "追踪步枪弹" + "id": "Homing_Rifle_Ammo" }, { - "id": "Alumina_Solution", - "name": "氧化铝溶液" + "id": "Alumina_Solution" }, { - "id": "Bauxite", - "name": "铝土矿" + "id": "Bauxite" }, { - "id": "Packaged_Alumina_Solution", - "name": "桶装氧化铝溶液" + "id": "Packaged_Alumina_Solution" }, { - "id": "Aluminum_Scrap", - "name": "碎铝渣" + "id": "Aluminum_Scrap" }, { - "id": "Aluminum_Ingot", - "name": "铝锭" + "id": "Aluminum_Ingot" }, { - "id": "Sulfuric_Acid", - "name": "硫酸" + "id": "Sulfuric_Acid" }, { - "id": "Packaged_Sulfuric_Acid", - "name": "桶装硫酸" + "id": "Packaged_Sulfuric_Acid" }, { - "id": "Battery", - "name": "电池" + "id": "Battery" }, { - "id": "Radio_Control_Unit", - "name": "无线电控制单元" + "id": "Radio_Control_Unit" }, { - "id": "Supercomputer", - "name": "超级计算机" + "id": "Supercomputer" }, { - "id": "Assembly_Director_System", - "name": "组装编导系统" + "id": "Assembly_Director_System" }, { - "id": "Empty_Fluid_Tank", - "name": "空瓶" + "id": "Empty_Fluid_Tank" }, { - "id": "Packaged_Nitrogen_Gas", - "name": "瓶装氮气" + "id": "Packaged_Nitrogen_Gas" }, { - "id": "Nitrogen_Gas", - "name": "氮气" + "id": "Nitrogen_Gas" }, { - "id": "Heat_Sink", - "name": "散热器" + "id": "Heat_Sink" }, { - "id": "Cooling_System", - "name": "冷却系统" + "id": "Cooling_System" }, { - "id": "Fused_Modular_Frame", - "name": "焊接模块化框架" + "id": "Fused_Modular_Frame" }, { - "id": "Dissolved_Silica", - "name": "二氧化硅溶解液" + "id": "Dissolved_Silica" }, { - "id": "Nitric_Acid", - "name": "硝酸" + "id": "Nitric_Acid" }, { - "id": "Encased_Uranium_Cell", - "name": "封装铀棒" + "id": "Encased_Uranium_Cell" }, { - "id": "Uranium", - "name": "铀" + "id": "Uranium" }, { - "id": "Electromagnetic_Control_Rod", - "name": "电磁控制杆" + "id": "Electromagnetic_Control_Rod" }, { - "id": "Uranium_Fuel_Rod", - "name": "铀燃料棒" + "id": "Uranium_Fuel_Rod" }, { - "id": "Magnetic_Field_Generator", - "name": "磁场发生器" + "id": "Magnetic_Field_Generator" }, { - "id": "Packaged_Nitric_Acid", - "name": "桶装硝酸" + "id": "Packaged_Nitric_Acid" }, { - "id": "Non-Fissile_Uranium", - "name": "非裂变贫铀" + "id": "Non-Fissile_Uranium" }, { - "id": "Uranium_Waste", - "name": "铀废料" + "id": "Uranium_Waste" }, { - "id": "Plutonium_Pellet", - "name": "钚丸" + "id": "Plutonium_Pellet" }, { - "id": "Encased_Plutonium_Cell", - "name": "封装钚棒" + "id": "Encased_Plutonium_Cell" }, { - "id": "Plutonium_Fuel_Rod", - "name": "钚燃料棒" + "id": "Plutonium_Fuel_Rod" }, { - "id": "Turbo_Motor", - "name": "涡轮马达" + "id": "Turbo_Motor" }, { - "id": "Copper_Powder", - "name": "铜粉" + "id": "Copper_Powder" }, { - "id": "Pressure_Conversion_Cube", - "name": "封压方块" + "id": "Pressure_Conversion_Cube" }, { - "id": "Nuclear_Pasta", - "name": "核意面" + "id": "Nuclear_Pasta" }, { - "id": "Thermal_Propulsion_Rocket", - "name": "热能推进火箭" + "id": "Thermal_Propulsion_Rocket" }, { - "id": "Turbofuel", - "name": "涡轮燃油" + "id": "Turbofuel" }, { - "id": "Packaged_Turbofuel", - "name": "桶装涡轮燃油" + "id": "Packaged_Turbofuel" }, { - "id": "Ficsite_Ingot", - "name": "F金锭" + "id": "Ficsite_Ingot" }, { - "id": "Ficsite_Trigon", - "name": "F金三角" + "id": "Ficsite_Trigon" }, { - "id": "Diamonds", - "name": "钻石" + "id": "Diamonds" }, { - "id": "Time_Crystal", - "name": "时间水晶" + "id": "Time_Crystal" }, { - "id": "Biochemical_Sculptor", - "name": "生化塑造器" + "id": "Biochemical_Sculptor" }, { - "id": "Dark_Matter_Residue", - "name": "暗物质残渣" + "id": "Dark_Matter_Residue" }, { - "id": "Dark_Matter_Crystal", - "name": "暗物质晶体" + "id": "Dark_Matter_Crystal" }, { - "id": "Excited_Photonic_Matter", - "name": "激发态光子物质" + "id": "Excited_Photonic_Matter" }, { - "id": "Explosive_Rebar", - "name": "爆炸铁棒弹" + "id": "Explosive_Rebar" }, { - "id": "Compacted_Coal", - "name": "压缩煤" + "id": "Compacted_Coal" }, { - "id": "Rocket_Fuel", - "name": "火箭燃料" + "id": "Rocket_Fuel" }, { - "id": "Packaged_Rocket_Fuel", - "name": "桶装火箭燃料" + "id": "Packaged_Rocket_Fuel" }, { - "id": "Ionized_Fuel", - "name": "电离燃油" + "id": "Ionized_Fuel" }, { - "id": "Packaged_Ionized_Fuel", - "name": "桶装电离燃油" + "id": "Packaged_Ionized_Fuel" }, { - "id": "Turbo_Rifle_Ammo", - "name": "涡轮步枪弹" + "id": "Turbo_Rifle_Ammo" }, { - "id": "Superposition_Oscillator", - "name": "叠加态振荡器" + "id": "Superposition_Oscillator" }, { - "id": "Neural-Quantum_Processor", - "name": "神经量子处理器" + "id": "Neural-Quantum_Processor" }, { - "id": "AI_Expansion_Server", - "name": "AI扩展伺服器" + "id": "AI_Expansion_Server" }, { - "id": "Nuke_Nobelisk", - "name": "核子诺氏雷筒" + "id": "Nuke_Nobelisk" }, { - "id": "Ficsonium", - "name": "镄" + "id": "Ficsonium" }, { - "id": "Plutonium_Waste", - "name": "钚废料" + "id": "Plutonium_Waste" }, { - "id": "Singularity_Cell", - "name": "奇点电池" + "id": "Singularity_Cell" }, { - "id": "Ficsonium_Fuel_Rod", - "name": "镄燃料棒" + "id": "Ficsonium_Fuel_Rod" }, { - "id": "Ballistic_Warp_Drive", - "name": "弹道跃迁引擎" + "id": "Ballistic_Warp_Drive" }, { - "id": "Alien_Power_Matrix", - "name": "外星能量矩阵" + "id": "Alien_Power_Matrix" } ] diff --git a/src/data/recipes.json b/src/data/recipes.json index 1597c2f..01e9ded 100644 --- a/src/data/recipes.json +++ b/src/data/recipes.json @@ -1,7 +1,6 @@ [ { "id": "Iron_Ingot", - "name": "铁锭", "inputs": [{ "itemId": "Iron_Ore", "quantity": 1 }], "outputs": [{ "itemId": "Iron_Ingot", "quantity": 1 }], "producedIn": "Smelter", @@ -9,7 +8,6 @@ }, { "id": "Pure_Iron_Ingot", - "name": "替代:高纯度铁锭", "inputs": [ { "itemId": "Iron_Ore", "quantity": 7 }, { "itemId": "Water", "quantity": 4 } @@ -20,7 +18,6 @@ }, { "id": "Basic_Iron_Ingot", - "name": "替代:基础钢铁", "inputs": [ { "itemId": "Iron_Ore", "quantity": 5 }, { "itemId": "Limestone", "quantity": 8 } @@ -31,7 +28,6 @@ }, { "id": "Iron_Alloy_Ingot", - "name": "替代:铁合金锭", "inputs": [ { "itemId": "Iron_Ore", "quantity": 8 }, { "itemId": "Copper_Ore", "quantity": 2 } @@ -42,7 +38,6 @@ }, { "id": "Leached_Iron_Ingot", - "name": "替代:滤化铁锭", "inputs": [ { "itemId": "Iron_Ore", "quantity": 5 }, { "itemId": "Sulfuric_Acid", "quantity": 1 } @@ -53,7 +48,6 @@ }, { "id": "Iron_Ore_(Limestone)", - "name": "铁矿石(石灰石)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Limestone", "quantity": 24 } @@ -65,7 +59,6 @@ }, { "id": "Iron_Plate", - "name": "铁板", "inputs": [{ "itemId": "Iron_Ingot", "quantity": 3 }], "outputs": [{ "itemId": "Iron_Plate", "quantity": 2 }], "producedIn": "Constructor", @@ -73,7 +66,6 @@ }, { "id": "Coated_Iron_Plate", - "name": "替代:镀层铁板", "inputs": [ { "itemId": "Iron_Ingot", "quantity": 5 }, { "itemId": "Plastic", "quantity": 1 } @@ -84,7 +76,6 @@ }, { "id": "Steel_Cast_Plate", - "name": "替代:铸钢板", "inputs": [ { "itemId": "Iron_Ingot", "quantity": 1 }, { "itemId": "Steel_Ingot", "quantity": 1 } @@ -95,7 +86,6 @@ }, { "id": "Iron_Rod", - "name": "铁棒", "inputs": [{ "itemId": "Iron_Ingot", "quantity": 1 }], "outputs": [{ "itemId": "Iron_Rod", "quantity": 1 }], "producedIn": "Constructor", @@ -103,7 +93,6 @@ }, { "id": "Steel_Rod", - "name": "替代:钢棒", "inputs": [{ "itemId": "Steel_Ingot", "quantity": 1 }], "outputs": [{ "itemId": "Iron_Rod", "quantity": 4 }], "producedIn": "Constructor", @@ -111,7 +100,6 @@ }, { "id": "Aluminum_Rod", - "name": "替代:铝棒", "inputs": [{ "itemId": "Aluminum_Ingot", "quantity": 1 }], "outputs": [{ "itemId": "Iron_Rod", "quantity": 7 }], "producedIn": "Constructor", @@ -119,7 +107,6 @@ }, { "id": "Reinforced_Iron_Plate", - "name": "强化铁板", "inputs": [ { "itemId": "Iron_Plate", "quantity": 6 }, { "itemId": "Screw", "quantity": 12 } @@ -130,7 +117,6 @@ }, { "id": "Stitched_Iron_Plate", - "name": "替代:拼接铁板", "inputs": [ { "itemId": "Iron_Plate", "quantity": 10 }, { "itemId": "Wire", "quantity": 20 } @@ -141,7 +127,6 @@ }, { "id": "Adhered_Iron_Plate", - "name": "替代:粘合铁板", "inputs": [ { "itemId": "Iron_Plate", "quantity": 3 }, { "itemId": "Rubber", "quantity": 1 } @@ -152,7 +137,6 @@ }, { "id": "Bolted_Iron_Plate", - "name": "替代:铆接铁板", "inputs": [ { "itemId": "Iron_Plate", "quantity": 18 }, { "itemId": "Screw", "quantity": 50 } @@ -163,7 +147,6 @@ }, { "id": "Cable", - "name": "电缆", "inputs": [{ "itemId": "Wire", "quantity": 2 }], "outputs": [{ "itemId": "Cable", "quantity": 1 }], "producedIn": "Constructor", @@ -171,7 +154,6 @@ }, { "id": "Quickwire_Cable", - "name": "替代:急速电缆", "inputs": [ { "itemId": "Quickwire", "quantity": 3 }, { "itemId": "Rubber", "quantity": 2 } @@ -182,7 +164,6 @@ }, { "id": "Insulated_Cable", - "name": "替代:绝缘电缆", "inputs": [ { "itemId": "Wire", "quantity": 9 }, { "itemId": "Rubber", "quantity": 6 } @@ -193,7 +174,6 @@ }, { "id": "Coated_Cable", - "name": "替代:镀层电缆", "inputs": [ { "itemId": "Wire", "quantity": 5 }, { "itemId": "Heavy_Oil_Residue", "quantity": 2 } @@ -204,7 +184,6 @@ }, { "id": "Wire", - "name": "电线", "inputs": [{ "itemId": "Copper_Ingot", "quantity": 1 }], "outputs": [{ "itemId": "Wire", "quantity": 2 }], "producedIn": "Constructor", @@ -212,7 +191,6 @@ }, { "id": "Caterium_Wire", - "name": "替代:钦金电线", "inputs": [{ "itemId": "Caterium_Ingot", "quantity": 1 }], "outputs": [{ "itemId": "Wire", "quantity": 8 }], "producedIn": "Constructor", @@ -220,7 +198,6 @@ }, { "id": "Iron_Wire", - "name": "替代:铁制电线", "inputs": [{ "itemId": "Iron_Ingot", "quantity": 5 }], "outputs": [{ "itemId": "Wire", "quantity": 9 }], "producedIn": "Constructor", @@ -228,7 +205,6 @@ }, { "id": "Fused_Wire", - "name": "替代:熔合电线", "inputs": [ { "itemId": "Copper_Ingot", "quantity": 4 }, { "itemId": "Caterium_Ingot", "quantity": 1 } @@ -239,7 +215,6 @@ }, { "id": "Copper_Ingot", - "name": "铜锭", "inputs": [{ "itemId": "Copper_Ore", "quantity": 1 }], "outputs": [{ "itemId": "Copper_Ingot", "quantity": 1 }], "producedIn": "Smelter", @@ -247,7 +222,6 @@ }, { "id": "Tempered_Copper_Ingot", - "name": "替代:回火铜锭", "inputs": [ { "itemId": "Copper_Ore", "quantity": 5 }, { "itemId": "Petroleum_Coke", "quantity": 8 } @@ -258,7 +232,6 @@ }, { "id": "Pure_Copper_Ingot", - "name": "替代:高纯度铜锭", "inputs": [ { "itemId": "Copper_Ore", "quantity": 6 }, { "itemId": "Water", "quantity": 4 } @@ -269,7 +242,6 @@ }, { "id": "Leached_Copper_Ingot", - "name": "替代:滤化铜锭", "inputs": [ { "itemId": "Copper_Ore", "quantity": 9 }, { "itemId": "Sulfuric_Acid", "quantity": 5 } @@ -280,7 +252,6 @@ }, { "id": "Copper_Alloy_Ingot", - "name": "替代:铜合金锭", "inputs": [ { "itemId": "Copper_Ore", "quantity": 5 }, { "itemId": "Iron_Ore", "quantity": 5 } @@ -291,7 +262,6 @@ }, { "id": "Copper_Ore_(Quartz)", - "name": "铜矿石(石英)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Raw_Quartz", "quantity": 10 } @@ -303,7 +273,6 @@ }, { "id": "Copper_Ore_(Sulfur)", - "name": "铜矿石(硫磺)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Sulfur", "quantity": 12 } @@ -315,7 +284,6 @@ }, { "id": "Concrete", - "name": "混凝土", "inputs": [{ "itemId": "Limestone", "quantity": 3 }], "outputs": [{ "itemId": "Concrete", "quantity": 1 }], "producedIn": "Constructor", @@ -323,7 +291,6 @@ }, { "id": "Wet_Concrete", - "name": "替代:塑性混凝土", "inputs": [ { "itemId": "Limestone", "quantity": 6 }, { "itemId": "Water", "quantity": 5 } @@ -334,7 +301,6 @@ }, { "id": "Fine_Concrete", - "name": "替代:细末混凝土", "inputs": [ { "itemId": "Silica", "quantity": 3 }, { "itemId": "Limestone", "quantity": 12 } @@ -345,7 +311,6 @@ }, { "id": "Rubber_Concrete", - "name": "替代:橡胶混凝土", "inputs": [ { "itemId": "Limestone", "quantity": 10 }, { "itemId": "Rubber", "quantity": 2 } @@ -356,7 +321,6 @@ }, { "id": "Limestone_(Sulfur)", - "name": "石灰石(硫磺)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Sulfur", "quantity": 2 } @@ -368,7 +332,6 @@ }, { "id": "Screw", - "name": "螺丝", "inputs": [{ "itemId": "Iron_Rod", "quantity": 1 }], "outputs": [{ "itemId": "Screw", "quantity": 4 }], "producedIn": "Constructor", @@ -376,7 +339,6 @@ }, { "id": "Cast_Screw", - "name": "替代:铸铁螺丝", "inputs": [{ "itemId": "Iron_Ingot", "quantity": 5 }], "outputs": [{ "itemId": "Screw", "quantity": 20 }], "producedIn": "Constructor", @@ -384,7 +346,6 @@ }, { "id": "Steel_Screw", - "name": "替代:钢制螺丝", "inputs": [{ "itemId": "Steel_Beam", "quantity": 1 }], "outputs": [{ "itemId": "Screw", "quantity": 52 }], "producedIn": "Constructor", @@ -392,7 +353,6 @@ }, { "id": "Biomass_(Wood)", - "name": "生物质(木材)", "inputs": [{ "itemId": "Wood", "quantity": 4 }], "outputs": [{ "itemId": "Biomass", "quantity": 20 }], "producedIn": "Constructor", @@ -400,7 +360,6 @@ }, { "id": "Biomass_(Leaves)", - "name": "生物质(树叶)", "inputs": [{ "itemId": "Leaves", "quantity": 10 }], "outputs": [{ "itemId": "Biomass", "quantity": 5 }], "producedIn": "Constructor", @@ -408,7 +367,6 @@ }, { "id": "Biomass_(Mycelia)", - "name": "生物质(菌丝体)", "inputs": [{ "itemId": "Mycelia", "quantity": 1 }], "outputs": [{ "itemId": "Biomass", "quantity": 10 }], "producedIn": "Constructor", @@ -416,7 +374,6 @@ }, { "id": "Biomass_(Alien_Protein)", - "name": "生物质(外星生物蛋白质)", "inputs": [{ "itemId": "Alien_Protein", "quantity": 1 }], "outputs": [{ "itemId": "Biomass", "quantity": 100 }], "producedIn": "Constructor", @@ -424,7 +381,6 @@ }, { "id": "Hog_Protein", - "name": "野猪蛋白质", "inputs": [{ "itemId": "Hog_Remains", "quantity": 1 }], "outputs": [{ "itemId": "Alien_Protein", "quantity": 1 }], "producedIn": "Constructor", @@ -432,7 +388,6 @@ }, { "id": "Stinger_Protein", - "name": "刺蛛蛋白质", "inputs": [{ "itemId": "Stinger_Remains", "quantity": 1 }], "outputs": [{ "itemId": "Alien_Protein", "quantity": 1 }], "producedIn": "Constructor", @@ -440,7 +395,6 @@ }, { "id": "Hatcher_Protein", - "name": "孵化巢蛋白质", "inputs": [{ "itemId": "Hatcher_Remains", "quantity": 1 }], "outputs": [{ "itemId": "Alien_Protein", "quantity": 1 }], "producedIn": "Constructor", @@ -448,7 +402,6 @@ }, { "id": "Spitter_Protein", - "name": "吐射兽蛋白质", "inputs": [{ "itemId": "Spitter_Remains", "quantity": 1 }], "outputs": [{ "itemId": "Alien_Protein", "quantity": 1 }], "producedIn": "Constructor", @@ -456,7 +409,6 @@ }, { "id": "Solid_Biofue", - "name": "固态生物燃料", "inputs": [{ "itemId": "Biomass", "quantity": 8 }], "outputs": [{ "itemId": "Solid_Biofuel", "quantity": 4 }], "producedIn": "Constructor", @@ -464,7 +416,6 @@ }, { "id": "Rotor", - "name": "转子", "inputs": [ { "itemId": "Iron_Rod", "quantity": 5 }, { "itemId": "Screw", "quantity": 25 } @@ -475,7 +426,6 @@ }, { "id": "Copper_Rotor", - "name": "替代:铜制转子", "inputs": [ { "itemId": "Copper_Sheet", "quantity": 6 }, { "itemId": "Screw", "quantity": 52 } @@ -486,7 +436,6 @@ }, { "id": "Steel_Rotor", - "name": "替代:钢制转子", "inputs": [ { "itemId": "Steel_Pipe", "quantity": 2 }, { "itemId": "Wire", "quantity": 6 } @@ -497,7 +446,6 @@ }, { "id": "Copper_Sheet", - "name": "铜板", "inputs": [{ "itemId": "Copper_Ingot", "quantity": 2 }], "outputs": [{ "itemId": "Copper_Sheet", "quantity": 1 }], "producedIn": "Constructor", @@ -505,7 +453,6 @@ }, { "id": "Steamed_Copper_Sheet", - "name": "替代:热压铜板", "inputs": [ { "itemId": "Copper_Ingot", "quantity": 3 }, { "itemId": "Water", "quantity": 3 } @@ -516,7 +463,6 @@ }, { "id": "Modular_Frame", - "name": "模块化框架", "inputs": [ { "itemId": "Reinforced_Iron_Plate", "quantity": 3 }, { "itemId": "Iron_Rod", "quantity": 12 } @@ -527,7 +473,6 @@ }, { "id": "Bolted_Frame", - "name": "替代:铆接式框架", "inputs": [ { "itemId": "Reinforced_Iron_Plate", "quantity": 3 }, { "itemId": "Screw", "quantity": 56 } @@ -538,7 +483,6 @@ }, { "id": "Steeled_Frame", - "name": "替代:钢制框架", "inputs": [ { "itemId": "Reinforced_Iron_Plate", "quantity": 2 }, { "itemId": "Steel_Pipe", "quantity": 10 } @@ -549,7 +493,6 @@ }, { "id": "Smart_Plating", - "name": "智能嵌板", "inputs": [ { "itemId": "Reinforced_Iron_Plate", "quantity": 1 }, { "itemId": "Rotor", "quantity": 1 } @@ -560,7 +503,6 @@ }, { "id": "Plastic_Smart_Plating", - "name": "替代:塑料智能嵌板", "inputs": [ { "itemId": "Reinforced_Iron_Plate", "quantity": 1 }, { "itemId": "Rotor", "quantity": 1 }, @@ -572,7 +514,6 @@ }, { "id": "Power_Shard_(1)", - "name": "能量碎片(1)", "inputs": [{ "itemId": "Blue_Power_Slug", "quantity": 1 }], "outputs": [{ "itemId": "Power_Shard", "quantity": 1 }], "producedIn": "Constructor", @@ -580,7 +521,6 @@ }, { "id": "Power_Shard_(2)", - "name": "能量碎片(2)", "inputs": [{ "itemId": "Yellow_Power_Slug", "quantity": 1 }], "outputs": [{ "itemId": "Power_Shard", "quantity": 2 }], "producedIn": "Constructor", @@ -588,7 +528,6 @@ }, { "id": "Power_Shard_(5)", - "name": "能量碎片(5)", "inputs": [{ "itemId": "Purple_Power_Slug", "quantity": 1 }], "outputs": [{ "itemId": "Power_Shard", "quantity": 5 }], "producedIn": "Constructor", @@ -596,7 +535,6 @@ }, { "id": "Synthetic_Power_Shard", - "name": "合成能量碎片", "inputs": [ { "itemId": "Time_Crystal", "quantity": 2 }, { "itemId": "Dark_Matter_Crystal", "quantity": 2 }, @@ -613,7 +551,6 @@ }, { "id": "Steel_Ingot", - "name": "钢锭", "inputs": [ { "itemId": "Iron_Ore", "quantity": 3 }, { "itemId": "Coal", "quantity": 3 } @@ -624,7 +561,6 @@ }, { "id": "Solid_Steel_Ingot", - "name": "替代:坚固钢锭", "inputs": [ { "itemId": "Iron_Ingot", "quantity": 2 }, { "itemId": "Coal", "quantity": 2 } @@ -635,7 +571,6 @@ }, { "id": "Coke_Steel_Ingot", - "name": "替代:高碳钢锭", "inputs": [ { "itemId": "Iron_Ore", "quantity": 15 }, { "itemId": "Petroleum_Coke", "quantity": 15 } @@ -646,7 +581,6 @@ }, { "id": "Compacted_Steel_Ingot", - "name": "替代:致密钢锭", "inputs": [ { "itemId": "Iron_Ore", "quantity": 2 }, { "itemId": "Compacted_Coal", "quantity": 1 } @@ -657,7 +591,6 @@ }, { "id": "Coal_(Iron)", - "name": "煤(铁)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Iron_Ore", "quantity": 18 } @@ -669,7 +602,6 @@ }, { "id": "Coal_(Limestone)", - "name": "煤(石灰石)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Limestone", "quantity": 36 } @@ -681,7 +613,6 @@ }, { "id": "Charcoal", - "name": "替代:木炭", "inputs": [{ "itemId": "Wood", "quantity": 1 }], "outputs": [{ "itemId": "Coal", "quantity": 10 }], "producedIn": "Constructor", @@ -689,7 +620,6 @@ }, { "id": "Biocoal", - "name": "替代:生物煤", "inputs": [{ "itemId": "Biomass", "quantity": 5 }], "outputs": [{ "itemId": "Coal", "quantity": 6 }], "producedIn": "Constructor", @@ -697,7 +627,6 @@ }, { "id": "Steel_Beam", - "name": "钢梁", "inputs": [{ "itemId": "Steel_Ingot", "quantity": 4 }], "outputs": [{ "itemId": "Steel_Beam", "quantity": 1 }], "producedIn": "Constructor", @@ -705,7 +634,6 @@ }, { "id": "Molded_Beam", - "name": "替代:浇铸梁", "inputs": [ { "itemId": "Steel_Ingot", "quantity": 24 }, { "itemId": "Limestone", "quantity": 16 } @@ -716,7 +644,6 @@ }, { "id": "Aluminum_Beam", - "name": "替代:铝制梁", "inputs": [{ "itemId": "Aluminum_Ingot", "quantity": 3 }], "outputs": [{ "itemId": "Steel_Beam", "quantity": 3 }], "producedIn": "Constructor", @@ -724,7 +651,6 @@ }, { "id": "Steel_Pipe", - "name": "钢管", "inputs": [{ "itemId": "Steel_Ingot", "quantity": 3 }], "outputs": [{ "itemId": "Steel_Pipe", "quantity": 2 }], "producedIn": "Constructor", @@ -732,7 +658,6 @@ }, { "id": "Molded_Steel_Pipe", - "name": "替代:浇铸钢管", "inputs": [ { "itemId": "Steel_Ingot", "quantity": 5 }, { "itemId": "Concrete", "quantity": 3 } @@ -743,7 +668,6 @@ }, { "id": "Iron_Pipe", - "name": "替代:铁制管道", "inputs": [{ "itemId": "Iron_Ingot", "quantity": 20 }], "outputs": [{ "itemId": "Steel_Pipe", "quantity": 5 }], "producedIn": "Constructor", @@ -751,7 +675,6 @@ }, { "id": "Versatile_Framework", - "name": "多功能框架", "inputs": [ { "itemId": "Modular_Frame", "quantity": 1 }, { "itemId": "Steel_Beam", "quantity": 12 } @@ -762,7 +685,6 @@ }, { "id": "Flexible_Framework", - "name": "替代:灵活型框架", "inputs": [ { "itemId": "Modular_Frame", "quantity": 1 }, { "itemId": "Steel_Beam", "quantity": 6 }, @@ -774,7 +696,6 @@ }, { "id": "Silica", - "name": "二氧化硅", "inputs": [{ "itemId": "Raw_Quartz", "quantity": 3 }], "outputs": [{ "itemId": "Silica", "quantity": 5 }], "producedIn": "Constructor", @@ -782,7 +703,6 @@ }, { "id": "Alumina_Solution", - "name": "氧化铝溶液", "inputs": [ { "itemId": "Bauxite", "quantity": 12 }, { "itemId": "Water", "quantity": 18 } @@ -796,7 +716,6 @@ }, { "id": "Cheap_Silica", - "name": "替代:粗制二氧化硅", "inputs": [ { "itemId": "Raw_Quartz", "quantity": 3 }, { "itemId": "Limestone", "quantity": 5 } @@ -807,7 +726,6 @@ }, { "id": "Distilled_Silica", - "name": "替代:提纯二氧化硅", "inputs": [ { "itemId": "Dissolved_Silica", "quantity": 12 }, { "itemId": "Limestone", "quantity": 5 }, @@ -822,7 +740,6 @@ }, { "id": "Raw_Quartz_(Bauxite)", - "name": "粗石英(铝土矿)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Bauxite", "quantity": 10 } @@ -834,7 +751,6 @@ }, { "id": "Raw_Quartz_(Coal)", - "name": "粗石英(煤)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Coal", "quantity": 24 } @@ -846,7 +762,6 @@ }, { "id": "Alien_DNA_Capsule", - "name": "外星DNA胶囊", "inputs": [{ "itemId": "Alien_Protein", "quantity": 1 }], "outputs": [{ "itemId": "Alien_DNA_Capsule", "quantity": 1 }], "producedIn": "Constructor", @@ -854,7 +769,6 @@ }, { "id": "Black_Powder", - "name": "黑火药", "inputs": [ { "itemId": "Coal", "quantity": 1 }, { "itemId": "Sulfur", "quantity": 1 } @@ -865,7 +779,6 @@ }, { "id": "Fine_Black_Powder", - "name": "替代:细末黑火药", "inputs": [ { "itemId": "Sulfur", "quantity": 1 }, { "itemId": "Compacted_Coal", "quantity": 2 } @@ -876,7 +789,6 @@ }, { "id": "Sulfur_(Coal)", - "name": "硫磺(煤)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Coal", "quantity": 20 } @@ -888,7 +800,6 @@ }, { "id": "Sulfur_(Iron)", - "name": "硫磺(铁)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Iron_Ore", "quantity": 30 } @@ -900,7 +811,6 @@ }, { "id": "Fabric", - "name": "纤维织物", "inputs": [ { "itemId": "Mycelia", "quantity": 1 }, { "itemId": "Biomass", "quantity": 5 } @@ -911,7 +821,6 @@ }, { "id": "Polyester_Fabric", - "name": "替代:聚酯纤维织物", "inputs": [ { "itemId": "Polymer_Resin", "quantity": 1 }, { "itemId": "Water", "quantity": 1 } @@ -922,7 +831,6 @@ }, { "id": "Iron_Rebar", - "name": "铁棒弹", "inputs": [{ "itemId": "Iron_Rod", "quantity": 1 }], "outputs": [{ "itemId": "Iron_Rebar", "quantity": 1 }], "producedIn": "Constructor", @@ -930,7 +838,6 @@ }, { "id": "Gas_Filter", - "name": "气体过滤器", "inputs": [ { "itemId": "Fabric", "quantity": 2 }, { "itemId": "Coal", "quantity": 4 }, @@ -942,7 +849,6 @@ }, { "id": "Nobelisk", - "name": "诺氏雷筒", "inputs": [ { "itemId": "Black_Powder", "quantity": 2 }, { "itemId": "Steel_Pipe", "quantity": 2 } @@ -953,7 +859,6 @@ }, { "id": "Quartz_Crystal", - "name": "石英晶体", "inputs": [{ "itemId": "Raw_Quartz", "quantity": 5 }], "outputs": [{ "itemId": "Quartz_Crystal", "quantity": 3 }], "producedIn": "Constructor", @@ -961,7 +866,6 @@ }, { "id": "Pure_Quartz_Crystal", - "name": "替代:纯石英晶体", "inputs": [ { "itemId": "Raw_Quartz", "quantity": 9 }, { "itemId": "Water", "quantity": 5 } @@ -972,7 +876,6 @@ }, { "id": "Quartz_Purification", - "name": "替代:石英净化", "inputs": [ { "itemId": "Raw_Quartz", "quantity": 24 }, { "itemId": "Nitric_Acid", "quantity": 2 } @@ -986,7 +889,6 @@ }, { "id": "Fused_Quartz_Crystal", - "name": "替代:熔合石英晶体", "inputs": [ { "itemId": "Raw_Quartz", "quantity": 25 }, { "itemId": "Coal", "quantity": 12 } @@ -997,7 +899,6 @@ }, { "id": "Crystal_Oscillator", - "name": "晶体振荡器", "inputs": [ { "itemId": "Quartz_Crystal", "quantity": 36 }, { "itemId": "Cable", "quantity": 28 }, @@ -1009,7 +910,6 @@ }, { "id": "Insulated_Crystal_Oscillator", - "name": "替代:绝缘晶体振荡器", "inputs": [ { "itemId": "Quartz_Crystal", "quantity": 10 }, { "itemId": "Rubber", "quantity": 7 }, @@ -1021,7 +921,6 @@ }, { "id": "Shatter_Rebar", - "name": "散射铁棒弹", "inputs": [ { "itemId": "Iron_Rebar", "quantity": 2 }, { "itemId": "Quartz_Crystal", "quantity": 3 } @@ -1032,7 +931,6 @@ }, { "id": "Encased_Industrial_Beam", - "name": "钢筋混凝土梁", "inputs": [ { "itemId": "Steel_Beam", "quantity": 3 }, { "itemId": "Concrete", "quantity": 6 } @@ -1043,7 +941,6 @@ }, { "id": "Encased_Industrial_Pipe", - "name": "替代:钢管混凝土梁", "inputs": [ { "itemId": "Steel_Pipe", "quantity": 6 }, { "itemId": "Concrete", "quantity": 5 } @@ -1054,7 +951,6 @@ }, { "id": "Stator", - "name": "定子", "inputs": [ { "itemId": "Steel_Pipe", "quantity": 3 }, { "itemId": "Wire", "quantity": 8 } @@ -1065,7 +961,6 @@ }, { "id": "Quickwire_Stator", - "name": "替代:急速电线定子", "inputs": [ { "itemId": "Steel_Pipe", "quantity": 4 }, { "itemId": "Quickwire", "quantity": 15 } @@ -1076,7 +971,6 @@ }, { "id": "Motor", - "name": "马达", "inputs": [ { "itemId": "Rotor", "quantity": 2 }, { "itemId": "Stator", "quantity": 2 } @@ -1087,7 +981,6 @@ }, { "id": "Rigor_Motor", - "name": "替代:牢固马达", "inputs": [ { "itemId": "Rotor", "quantity": 3 }, { "itemId": "Stator", "quantity": 3 }, @@ -1099,7 +992,6 @@ }, { "id": "Electric_Motor", - "name": "替代:电磁马达", "inputs": [ { "itemId": "Electromagnetic_Control_Rod", "quantity": 1 }, { "itemId": "Rotor", "quantity": 2 } @@ -1110,7 +1002,6 @@ }, { "id": "Automated_Wiring", - "name": "自动化线缆", "inputs": [ { "itemId": "Stator", "quantity": 1 }, { "itemId": "Cable", "quantity": 20 } @@ -1121,7 +1012,6 @@ }, { "id": "Automated_Speed_Wiring", - "name": "替代:自动化高速线缆", "inputs": [ { "itemId": "Stator", "quantity": 2 }, { "itemId": "Wire", "quantity": 40 }, @@ -1133,7 +1023,6 @@ }, { "id": "Gas_Nobelisk", - "name": "毒气诺石", "inputs": [ { "itemId": "Nobelisk", "quantity": 1 }, { "itemId": "Biomass", "quantity": 10 } @@ -1144,7 +1033,6 @@ }, { "id": "Reanimated_SAM", - "name": "活性SAM物质", "inputs": [{ "itemId": "SAM", "quantity": 4 }], "outputs": [{ "itemId": "Reanimated_SAM", "quantity": 1 }], "producedIn": "Constructor", @@ -1152,7 +1040,6 @@ }, { "id": "Caterium_Ingot", - "name": "钦金锭", "inputs": [{ "itemId": "Caterium_Ore", "quantity": 3 }], "outputs": [{ "itemId": "Caterium_Ingot", "quantity": 1 }], "producedIn": "Smelter", @@ -1160,7 +1047,6 @@ }, { "id": "Pure_Caterium_Ingot", - "name": "替代:高纯度钦金锭", "inputs": [ { "itemId": "Caterium_Ore", "quantity": 2 }, { "itemId": "Water", "quantity": 2 } @@ -1171,7 +1057,6 @@ }, { "id": "Leached_Caterium_Ingot", - "name": "替代:滤化钦金锭", "inputs": [ { "itemId": "Caterium_Ore", "quantity": 9 }, { "itemId": "Sulfuric_Acid", "quantity": 5 } @@ -1182,7 +1067,6 @@ }, { "id": "Tempered_Caterium_Ingot", - "name": "替代:回火钦金锭", "inputs": [ { "itemId": "Caterium_Ore", "quantity": 6 }, { "itemId": "Petroleum_Coke", "quantity": 2 } @@ -1193,7 +1077,6 @@ }, { "id": "Caterium_Ore_(Copper)", - "name": "钦金矿石(铜)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Copper_Ore", "quantity": 15 } @@ -1205,7 +1088,6 @@ }, { "id": "Caterium_Ore_(Quartz)", - "name": "钦金矿石(石英)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Raw_Quartz", "quantity": 12 } @@ -1217,7 +1099,6 @@ }, { "id": "SAM_Fluctuator", - "name": "SAM物质波波动器", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 6 }, { "itemId": "Wire", "quantity": 5 }, @@ -1229,7 +1110,6 @@ }, { "id": "Quickwire", - "name": "急速电线", "inputs": [{ "itemId": "Caterium_Ingot", "quantity": 1 }], "outputs": [{ "itemId": "Quickwire", "quantity": 5 }], "producedIn": "Constructor", @@ -1237,7 +1117,6 @@ }, { "id": "Fused_Quickwire", - "name": "替代:熔合急速电线", "inputs": [ { "itemId": "Caterium_Ingot", "quantity": 1 }, { "itemId": "Copper_Ingot", "quantity": 5 } @@ -1248,7 +1127,6 @@ }, { "id": "Stun_Rebar", - "name": "电击铁棒弹", "inputs": [ { "itemId": "Iron_Rebar", "quantity": 1 }, { "itemId": "Quickwire", "quantity": 5 } @@ -1259,7 +1137,6 @@ }, { "id": "AI_Limiter", - "name": "AI限制器", "inputs": [ { "itemId": "Copper_Sheet", "quantity": 5 }, { "itemId": "Quickwire", "quantity": 20 } @@ -1270,7 +1147,6 @@ }, { "id": "Plastic_AI_Limiter", - "name": "替代:塑料AI限制器", "inputs": [ { "itemId": "Quickwire", "quantity": 30 }, { "itemId": "Plastic", "quantity": 7 } @@ -1281,7 +1157,6 @@ }, { "id": "Petroleum_Coke", - "name": "石油焦", "inputs": [{ "itemId": "Heavy_Oil_Residue", "quantity": 4 }], "outputs": [{ "itemId": "Petroleum_Coke", "quantity": 12 }], "producedIn": "Refinery", @@ -1289,7 +1164,6 @@ }, { "id": "Plastic", - "name": "塑料", "inputs": [{ "itemId": "Crude_Oil", "quantity": 3 }], "outputs": [ { "itemId": "Plastic", "quantity": 2 }, @@ -1300,7 +1174,6 @@ }, { "id": "Rubber", - "name": "橡胶", "inputs": [{ "itemId": "Crude_Oil", "quantity": 3 }], "outputs": [ { "itemId": "Rubber", "quantity": 2 }, @@ -1311,7 +1184,6 @@ }, { "id": "Unpackage_Heavy_Oil_Residue", - "name": "导出重油残渣", "inputs": [{ "itemId": "Packaged_Heavy_Oil_Residue", "quantity": 2 }], "outputs": [ { "itemId": "Heavy_Oil_Residue", "quantity": 2 }, @@ -1322,7 +1194,6 @@ }, { "id": "Polymer_Resin", - "name": "替代:聚合树脂", "inputs": [{ "itemId": "Crude_Oil", "quantity": 6 }], "outputs": [ { "itemId": "Polymer_Resin", "quantity": 13 }, @@ -1333,7 +1204,6 @@ }, { "id": "Heavy_Oil_Residue", - "name": "替代:重油残渣", "inputs": [{ "itemId": "Crude_Oil", "quantity": 3 }], "outputs": [ { "itemId": "Heavy_Oil_Residue", "quantity": 4 }, @@ -1344,7 +1214,6 @@ }, { "id": "Circuit_Board", - "name": "电路板", "inputs": [ { "itemId": "Copper_Sheet", "quantity": 2 }, { "itemId": "Plastic", "quantity": 4 } @@ -1355,7 +1224,6 @@ }, { "id": "Silicon_Circuit_Board", - "name": "替代:硅基电路板", "inputs": [ { "itemId": "Copper_Sheet", "quantity": 11 }, { "itemId": "Silica", "quantity": 11 } @@ -1366,7 +1234,6 @@ }, { "id": "Caterium_Circuit_Board", - "name": "替代:钦金电路板", "inputs": [ { "itemId": "Plastic", "quantity": 10 }, { "itemId": "Quickwire", "quantity": 30 } @@ -1377,7 +1244,6 @@ }, { "id": "Electrode_Circuit_Board", - "name": "替代:电极电路板", "inputs": [ { "itemId": "Rubber", "quantity": 4 }, { "itemId": "Petroleum_Coke", "quantity": 8 } @@ -1388,7 +1254,6 @@ }, { "id": "Residual_Plastic", - "name": "聚合塑料", "inputs": [ { "itemId": "Polymer_Resin", "quantity": 6 }, { "itemId": "Water", "quantity": 2 } @@ -1399,7 +1264,6 @@ }, { "id": "Recycled_Plastic", - "name": "替代:再生塑料", "inputs": [ { "itemId": "Rubber", "quantity": 6 }, { "itemId": "Fuel", "quantity": 6 } @@ -1410,7 +1274,6 @@ }, { "id": "Fuel", - "name": "燃料", "inputs": [{ "itemId": "Crude_Oil", "quantity": 6 }], "outputs": [ { "itemId": "Fuel", "quantity": 4 }, @@ -1421,7 +1284,6 @@ }, { "id": "Unpackage_Water", - "name": "导出水", "inputs": [{ "itemId": "Packaged_Water", "quantity": 2 }], "outputs": [ { "itemId": "Water", "quantity": 2 }, @@ -1432,7 +1294,6 @@ }, { "id": "Aluminum_Scrap", - "name": "碎铝渣", "inputs": [ { "itemId": "Alumina_Solution", "quantity": 4 }, { "itemId": "Coal", "quantity": 2 } @@ -1446,7 +1307,6 @@ }, { "id": "Electrode_Aluminum_Scrap", - "name": "替代:电解制铝", "inputs": [ { "itemId": "Alumina_Solution", "quantity": 12 }, { "itemId": "Petroleum_Coke", "quantity": 4 } @@ -1460,7 +1320,6 @@ }, { "id": "Battery", - "name": "电池", "inputs": [ { "itemId": "Sulfuric_Acid", "quantity": 2.5 }, { "itemId": "Alumina_Solution", "quantity": 2 }, @@ -1475,7 +1334,6 @@ }, { "id": "Non-Fissile_Uranium", - "name": "非裂变贫铀", "inputs": [ { "itemId": "Uranium_Waste", "quantity": 15 }, { "itemId": "Silica", "quantity": 10 }, @@ -1491,7 +1349,6 @@ }, { "id": "Fertile_Uranium", - "name": "替代:富铀", "inputs": [ { "itemId": "Uranium", "quantity": 5 }, { "itemId": "Uranium_Waste", "quantity": 5 }, @@ -1507,7 +1364,6 @@ }, { "id": "Instant_Scrap", - "name": "替代:速成型碎铝渣", "inputs": [ { "itemId": "Bauxite", "quantity": 15 }, { "itemId": "Coal", "quantity": 10 }, @@ -1523,7 +1379,6 @@ }, { "id": "Residual_Rubber", - "name": "聚合橡胶", "inputs": [ { "itemId": "Polymer_Resin", "quantity": 4 }, { "itemId": "Water", "quantity": 4 } @@ -1534,7 +1389,6 @@ }, { "id": "Recycled_Rubber", - "name": "替代:再生橡胶", "inputs": [ { "itemId": "Plastic", "quantity": 6 }, { "itemId": "Fuel", "quantity": 6 } @@ -1545,7 +1399,6 @@ }, { "id": "Residual_Fuel", - "name": "残渣燃料油", "inputs": [{ "itemId": "Heavy_Oil_Residue", "quantity": 6 }], "outputs": [{ "itemId": "Fuel", "quantity": 4 }], "producedIn": "Refinery", @@ -1553,7 +1406,6 @@ }, { "id": "Unpackage_Fuel", - "name": "导出燃油", "inputs": [{ "itemId": "Packaged_Fuel", "quantity": 2 }], "outputs": [ { "itemId": "Fuel", "quantity": 2 }, @@ -1564,7 +1416,6 @@ }, { "id": "Diluted_Fuel", - "name": "替代:稀释燃油", "inputs": [ { "itemId": "Heavy_Oil_Residue", "quantity": 5 }, { "itemId": "Water", "quantity": 10 } @@ -1575,7 +1426,6 @@ }, { "id": "Unpackage_Oil", - "name": "导出原油", "inputs": [{ "itemId": "Packaged_Oil", "quantity": 2 }], "outputs": [ { "itemId": "Crude_Oil", "quantity": 2 }, @@ -1586,7 +1436,6 @@ }, { "id": "High-Speed_Connector", - "name": "高速连接器", "inputs": [ { "itemId": "Quickwire", "quantity": 56 }, { "itemId": "Cable", "quantity": 10 }, @@ -1598,7 +1447,6 @@ }, { "id": "Silicon_High-Speed_Connector", - "name": "替代:硅基高速连接器", "inputs": [ { "itemId": "Quickwire", "quantity": 60 }, { "itemId": "Silica", "quantity": 25 }, @@ -1610,7 +1458,6 @@ }, { "id": "Empty_Canister", - "name": "空桶", "inputs": [{ "itemId": "Plastic", "quantity": 2 }], "outputs": [{ "itemId": "Empty_Canister", "quantity": 4 }], "producedIn": "Constructor", @@ -1618,7 +1465,6 @@ }, { "id": "Unpackage_Liquid_Biofuel", - "name": "导出液态生物燃料", "inputs": [{ "itemId": "Packaged_Liquid_Biofuel", "quantity": 2 }], "outputs": [ { "itemId": "Liquid_Biofuel", "quantity": 2 }, @@ -1629,7 +1475,6 @@ }, { "id": "Coated_Iron_Canister", - "name": "替代:镀层铁桶", "inputs": [ { "itemId": "Iron_Plate", "quantity": 2 }, { "itemId": "Copper_Sheet", "quantity": 1 } @@ -1640,7 +1485,6 @@ }, { "id": "Unpackage_Alumina_Solution", - "name": "导出氧化铝溶液", "inputs": [{ "itemId": "Packaged_Alumina_Solution", "quantity": 2 }], "outputs": [ { "itemId": "Alumina_Solution", "quantity": 2 }, @@ -1651,7 +1495,6 @@ }, { "id": "Steel_Canister", - "name": "替代:钢桶", "inputs": [{ "itemId": "Steel_Ingot", "quantity": 4 }], "outputs": [{ "itemId": "Empty_Canister", "quantity": 4 }], "producedIn": "Constructor", @@ -1659,7 +1502,6 @@ }, { "id": "Unpackage_Sulfuric_Acid", - "name": "导出硫酸", "inputs": [{ "itemId": "Packaged_Sulfuric_Acid", "quantity": 1 }], "outputs": [ { "itemId": "Sulfuric_Acid", "quantity": 1 }, @@ -1670,7 +1512,6 @@ }, { "id": "Unpackage_Turbofuel", - "name": "导出涡轮燃油", "inputs": [{ "itemId": "Packaged_Turbofuel", "quantity": 2 }], "outputs": [ { "itemId": "Turbofuel", "quantity": 2 }, @@ -1681,7 +1522,6 @@ }, { "id": "Packaged_Water", - "name": "桶装水", "inputs": [ { "itemId": "Water", "quantity": 2 }, { "itemId": "Empty_Canister", "quantity": 2 } @@ -1692,7 +1532,6 @@ }, { "id": "Packaged_Oil", - "name": "桶装原油", "inputs": [ { "itemId": "Crude_Oil", "quantity": 2 }, { "itemId": "Empty_Canister", "quantity": 2 } @@ -1703,7 +1542,6 @@ }, { "id": "Packaged_Fuel", - "name": "桶装燃油", "inputs": [ { "itemId": "Fuel", "quantity": 2 }, { "itemId": "Empty_Canister", "quantity": 2 } @@ -1714,7 +1552,6 @@ }, { "id": "Diluted_Packaged_Fuel", - "name": "替代:桶装稀释燃油", "inputs": [ { "itemId": "Heavy_Oil_Residue", "quantity": 1 }, { "itemId": "Packaged_Water", "quantity": 2 } @@ -1725,7 +1562,6 @@ }, { "id": "Packaged_Heavy_Oil_Residue", - "name": "桶装重油残渣", "inputs": [ { "itemId": "Heavy_Oil_Residue", "quantity": 2 }, { "itemId": "Empty_Canister", "quantity": 2 } @@ -1736,7 +1572,6 @@ }, { "id": "Packaged_Liquid_Biofuel", - "name": "桶装液态生物燃料", "inputs": [ { "itemId": "Liquid_Biofuel", "quantity": 2 }, { "itemId": "Empty_Canister", "quantity": 2 } @@ -1747,7 +1582,6 @@ }, { "id": "Liquid_Biofuel", - "name": "液态生物燃料", "inputs": [ { "itemId": "Solid_Biofuel", "quantity": 6 }, { "itemId": "Water", "quantity": 3 } @@ -1758,7 +1592,6 @@ }, { "id": "Computer", - "name": "计算机", "inputs": [ { "itemId": "Circuit_Board", "quantity": 4 }, { "itemId": "Cable", "quantity": 8 }, @@ -1770,7 +1603,6 @@ }, { "id": "Caterium_Computer", - "name": "替代:钦金计算机", "inputs": [ { "itemId": "Circuit_Board", "quantity": 4 }, { "itemId": "Quickwire", "quantity": 14 }, @@ -1782,7 +1614,6 @@ }, { "id": "Crystal_Computer", - "name": "替代:晶体计算机", "inputs": [ { "itemId": "Circuit_Board", "quantity": 3 }, { "itemId": "Crystal_Oscillator", "quantity": 1 } @@ -1793,7 +1624,6 @@ }, { "id": "Heavy_Modular_Frame", - "name": "重型模块化框架", "inputs": [ { "itemId": "Modular_Frame", "quantity": 5 }, { "itemId": "Steel_Pipe", "quantity": 20 }, @@ -1806,7 +1636,6 @@ }, { "id": "Heavy_Encased_Frame", - "name": "替代:重型封闭式框架", "inputs": [ { "itemId": "Modular_Frame", "quantity": 8 }, { "itemId": "Encased_Industrial_Beam", "quantity": 10 }, @@ -1819,7 +1648,6 @@ }, { "id": "Heavy_Flexible_Frame", - "name": "替代:重型柔韧框架", "inputs": [ { "itemId": "Modular_Frame", "quantity": 5 }, { "itemId": "Encased_Industrial_Beam", "quantity": 3 }, @@ -1832,7 +1660,6 @@ }, { "id": "Modular_Engine", - "name": "模块化引擎", "inputs": [ { "itemId": "Motor", "quantity": 2 }, { "itemId": "Rubber", "quantity": 15 }, @@ -1844,7 +1671,6 @@ }, { "id": "Adaptive_Control_Unit", - "name": "自适应控制单元", "inputs": [ { "itemId": "Automated_Wiring", "quantity": 5 }, { "itemId": "Circuit_Board", "quantity": 5 }, @@ -1857,7 +1683,6 @@ }, { "id": "Smokeless_Powder", - "name": "无烟火药", "inputs": [ { "itemId": "Black_Powder", "quantity": 2 }, { "itemId": "Heavy_Oil_Residue", "quantity": 1 } @@ -1868,7 +1693,6 @@ }, { "id": "Pulse_Nobelisk", - "name": "脉冲诺石", "inputs": [ { "itemId": "Nobelisk", "quantity": 5 }, { "itemId": "Crystal_Oscillator", "quantity": 1 } @@ -1879,7 +1703,6 @@ }, { "id": "Rifle_Ammo", - "name": "步枪弹药", "inputs": [ { "itemId": "Copper_Sheet", "quantity": 3 }, { "itemId": "Smokeless_Powder", "quantity": 2 } @@ -1890,7 +1713,6 @@ }, { "id": "Alclad_Aluminum_Sheet", - "name": "复合铝板", "inputs": [ { "itemId": "Aluminum_Ingot", "quantity": 3 }, { "itemId": "Copper_Ingot", "quantity": 1 } @@ -1901,7 +1723,6 @@ }, { "id": "Iodine-Infused_Filter", - "name": "碘化过滤器", "inputs": [ { "itemId": "Gas_Filter", "quantity": 1 }, { "itemId": "Quickwire", "quantity": 8 }, @@ -1913,7 +1734,6 @@ }, { "id": "Aluminum_Casing", - "name": "铝制外壳", "inputs": [{ "itemId": "Aluminum_Ingot", "quantity": 3 }], "outputs": [{ "itemId": "Aluminum_Casing", "quantity": 2 }], "producedIn": "Constructor", @@ -1921,7 +1741,6 @@ }, { "id": "Alclad_Casing", - "name": "替代:复合铝外壳", "inputs": [ { "itemId": "Aluminum_Ingot", "quantity": 20 }, { "itemId": "Copper_Ingot", "quantity": 10 } @@ -1932,7 +1751,6 @@ }, { "id": "Cluster_Nobelisk", - "name": "集束诺氏雷筒", "inputs": [ { "itemId": "Nobelisk", "quantity": 3 }, { "itemId": "Smokeless_Powder", "quantity": 4 } @@ -1943,7 +1761,6 @@ }, { "id": "Homing_Rifle_Ammo", - "name": "追踪步枪弹", "inputs": [ { "itemId": "Rifle_Ammo", "quantity": 20 }, { "itemId": "High-Speed_Connector", "quantity": 1 } @@ -1954,7 +1771,6 @@ }, { "id": "Sloppy_Alumina", - "name": "替代:氧化铝匀浆", "inputs": [ { "itemId": "Bauxite", "quantity": 10 }, { "itemId": "Water", "quantity": 10 } @@ -1965,7 +1781,6 @@ }, { "id": "Bauxite_(Caterium)", - "name": "铝土矿(钦金)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Caterium_Ore", "quantity": 15 } @@ -1977,7 +1792,6 @@ }, { "id": "Bauxite_(Copper)", - "name": "铝土矿(铜)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Copper_Ore", "quantity": 18 } @@ -1989,7 +1803,6 @@ }, { "id": "Packaged_Alumina_Solution", - "name": "桶装氧化铝溶液", "inputs": [ { "itemId": "Alumina_Solution", "quantity": 2 }, { "itemId": "Empty_Canister", "quantity": 2 } @@ -2000,7 +1813,6 @@ }, { "id": "Aluminum_Ingot", - "name": "铝锭", "inputs": [ { "itemId": "Aluminum_Scrap", "quantity": 6 }, { "itemId": "Silica", "quantity": 5 } @@ -2011,7 +1823,6 @@ }, { "id": "Pure_Aluminum_Ingot", - "name": "替代:高纯度铝锭", "inputs": [{ "itemId": "Aluminum_Scrap", "quantity": 2 }], "outputs": [{ "itemId": "Aluminum_Ingot", "quantity": 1 }], "producedIn": "Smelter", @@ -2019,7 +1830,6 @@ }, { "id": "Sulfuric_Acid", - "name": "硫酸", "inputs": [ { "itemId": "Sulfur", "quantity": 5 }, { "itemId": "Water", "quantity": 5 } @@ -2030,7 +1840,6 @@ }, { "id": "Encased_Uranium_Cell", - "name": "封装铀棒", "inputs": [ { "itemId": "Uranium", "quantity": 10 }, { "itemId": "Concrete", "quantity": 3 }, @@ -2045,7 +1854,6 @@ }, { "id": "Packaged_Sulfuric_Acid", - "name": "桶装硫酸", "inputs": [ { "itemId": "Sulfuric_Acid", "quantity": 2 }, { "itemId": "Empty_Canister", "quantity": 2 } @@ -2056,7 +1864,6 @@ }, { "id": "Classic_Battery", - "name": "替代:传统电池", "inputs": [ { "itemId": "Sulfur", "quantity": 6 }, { "itemId": "Alclad_Aluminum_Sheet", "quantity": 7 }, @@ -2069,7 +1876,6 @@ }, { "id": "Radio_Control_Unit", - "name": "无线电控制单元", "inputs": [ { "itemId": "Aluminum_Casing", "quantity": 32 }, { "itemId": "Crystal_Oscillator", "quantity": 1 }, @@ -2081,7 +1887,6 @@ }, { "id": "Radio_Control_System", - "name": "替代:无线电控制系统", "inputs": [ { "itemId": "Crystal_Oscillator", "quantity": 1 }, { "itemId": "Circuit_Board", "quantity": 10 }, @@ -2094,7 +1899,6 @@ }, { "id": "Radio_Connection_Unit", - "name": "替代:无线电连接单元", "inputs": [ { "itemId": "Heat_Sink", "quantity": 4 }, { "itemId": "High-Speed_Connector", "quantity": 2 }, @@ -2106,7 +1910,6 @@ }, { "id": "Supercomputer", - "name": "超级计算机", "inputs": [ { "itemId": "Computer", "quantity": 4 }, { "itemId": "AI_Limiter", "quantity": 2 }, @@ -2119,7 +1922,6 @@ }, { "id": "OC_Supercomputer", - "name": "替代:超频超级计算机", "inputs": [ { "itemId": "Radio_Control_Unit", "quantity": 2 }, { "itemId": "Cooling_System", "quantity": 2 } @@ -2130,7 +1932,6 @@ }, { "id": "Super-State_Computer", - "name": "替代:超状态计算机", "inputs": [ { "itemId": "Computer", "quantity": 3 }, { "itemId": "Electromagnetic_Control_Rod", "quantity": 1 }, @@ -2143,7 +1944,6 @@ }, { "id": "Assembly_Director_System", - "name": "组装编导系统", "inputs": [ { "itemId": "Adaptive_Control_Unit", "quantity": 2 }, { "itemId": "Supercomputer", "quantity": 1 } @@ -2154,7 +1954,6 @@ }, { "id": "Empty_Fluid_Tank", - "name": "空瓶", "inputs": [{ "itemId": "Aluminum_Ingot", "quantity": 1 }], "outputs": [{ "itemId": "Empty_Fluid_Tank", "quantity": 1 }], "producedIn": "Constructor", @@ -2162,7 +1961,6 @@ }, { "id": "Unpackage_Nitrogen_Gas", - "name": "导出氮气", "inputs": [{ "itemId": "Packaged_Nitrogen_Gas", "quantity": 1 }], "outputs": [ { "itemId": "Nitrogen_Gas", "quantity": 4 }, @@ -2173,7 +1971,6 @@ }, { "id": "Unpackage_Nitric_Acid", - "name": "导出硝酸", "inputs": [{ "itemId": "Packaged_Nitric_Acid", "quantity": 1 }], "outputs": [ { "itemId": "Nitric_Acid", "quantity": 1 }, @@ -2184,7 +1981,6 @@ }, { "id": "Unpackage_Rocket_Fuel", - "name": "导出火箭燃料", "inputs": [{ "itemId": "Packaged_Rocket_Fuel", "quantity": 1 }], "outputs": [ { "itemId": "Rocket_Fuel", "quantity": 2 }, @@ -2195,7 +1991,6 @@ }, { "id": "Unpackage_Ionized_Fuel", - "name": "导出电离燃油", "inputs": [{ "itemId": "Packaged_Ionized_Fuel", "quantity": 2 }], "outputs": [ { "itemId": "Ionized_Fuel", "quantity": 4 }, @@ -2206,7 +2001,6 @@ }, { "id": "Packaged_Nitrogen_Gas", - "name": "瓶装氮气", "inputs": [ { "itemId": "Nitrogen_Gas", "quantity": 4 }, { "itemId": "Empty_Fluid_Tank", "quantity": 1 } @@ -2217,7 +2011,6 @@ }, { "id": "Nitrogen_Gas_(Bauxite)", - "name": "氮气(铝土矿)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Bauxite", "quantity": 10 } @@ -2229,7 +2022,6 @@ }, { "id": "Nitrogen_Gas_(Caterium)", - "name": "氮气(钦金)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Caterium_Ore", "quantity": 12 } @@ -2241,7 +2033,6 @@ }, { "id": "Heat_Sink", - "name": "散热器", "inputs": [ { "itemId": "Alclad_Aluminum_Sheet", "quantity": 5 }, { "itemId": "Copper_Sheet", "quantity": 3 } @@ -2252,7 +2043,6 @@ }, { "id": "Heat_Exchanger", - "name": "替代:热交换器", "inputs": [ { "itemId": "Aluminum_Casing", "quantity": 3 }, { "itemId": "Rubber", "quantity": 3 } @@ -2263,7 +2053,6 @@ }, { "id": "Cooling_System", - "name": "冷却系统", "inputs": [ { "itemId": "Heat_Sink", "quantity": 2 }, { "itemId": "Rubber", "quantity": 2 }, @@ -2276,7 +2065,6 @@ }, { "id": "Cooling_Device", - "name": "替代:冷却装置", "inputs": [ { "itemId": "Heat_Sink", "quantity": 4 }, { "itemId": "Motor", "quantity": 1 }, @@ -2288,7 +2076,6 @@ }, { "id": "Fused_Modular_Frame", - "name": "焊接模块化框架", "inputs": [ { "itemId": "Heavy_Modular_Frame", "quantity": 1 }, { "itemId": "Aluminum_Casing", "quantity": 50 }, @@ -2300,7 +2087,6 @@ }, { "id": "Heat-Fused_Frame", - "name": "替代:热熔框架", "inputs": [ { "itemId": "Heavy_Modular_Frame", "quantity": 1 }, { "itemId": "Aluminum_Ingot", "quantity": 50 }, @@ -2313,7 +2099,6 @@ }, { "id": "Nitric_Acid", - "name": "硝酸", "inputs": [ { "itemId": "Nitrogen_Gas", "quantity": 12 }, { "itemId": "Water", "quantity": 3 }, @@ -2325,7 +2110,6 @@ }, { "id": "Infused_Uranium_Cell", - "name": "替代:混合型铀棒", "inputs": [ { "itemId": "Uranium", "quantity": 5 }, { "itemId": "Silica", "quantity": 3 }, @@ -2338,7 +2122,6 @@ }, { "id": "Uranium_Ore_(Bauxite)", - "name": "铀矿石(铝土矿)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 1 }, { "itemId": "Bauxite", "quantity": 48 } @@ -2350,7 +2133,6 @@ }, { "id": "Electromagnetic_Control_Rod", - "name": "电磁控制杆", "inputs": [ { "itemId": "Stator", "quantity": 3 }, { "itemId": "AI_Limiter", "quantity": 2 } @@ -2361,7 +2143,6 @@ }, { "id": "Electromagnetic_Connection_Rod", - "name": "替代:电磁连接杆", "inputs": [ { "itemId": "Stator", "quantity": 2 }, { "itemId": "High-Speed_Connector", "quantity": 1 } @@ -2372,7 +2153,6 @@ }, { "id": "Uranium_Fuel_Rod", - "name": "铀燃料棒", "inputs": [ { "itemId": "Encased_Uranium_Cell", "quantity": 50 }, { "itemId": "Encased_Industrial_Beam", "quantity": 3 }, @@ -2384,7 +2164,6 @@ }, { "id": "Uranium_Fuel_Unit", - "name": "替代:铀燃料单元", "inputs": [ { "itemId": "Encased_Uranium_Cell", "quantity": 100 }, { "itemId": "Electromagnetic_Control_Rod", "quantity": 10 }, @@ -2397,7 +2176,6 @@ }, { "id": "Magnetic_Field_Generator", - "name": "磁场发生器", "inputs": [ { "itemId": "Versatile_Framework", "quantity": 5 }, { "itemId": "Electromagnetic_Control_Rod", "quantity": 5 } @@ -2408,7 +2186,6 @@ }, { "id": "Packaged_Nitric_Acid", - "name": "桶装硝酸", "inputs": [ { "itemId": "Nitric_Acid", "quantity": 1 }, { "itemId": "Empty_Fluid_Tank", "quantity": 1 } @@ -2419,7 +2196,6 @@ }, { "id": "Plutonium_Pellet", - "name": "钚丸", "inputs": [ { "itemId": "Non-Fissile_Uranium", "quantity": 100 }, { "itemId": "Uranium_Waste", "quantity": 25 } @@ -2431,7 +2207,6 @@ }, { "id": "Encased_Plutonium_Cell", - "name": "封装钚棒", "inputs": [ { "itemId": "Plutonium_Pellet", "quantity": 2 }, { "itemId": "Concrete", "quantity": 4 } @@ -2442,7 +2217,6 @@ }, { "id": "Instant_Plutonium_Cell", - "name": "替代:速成型钚棒", "inputs": [ { "itemId": "Non-Fissile_Uranium", "quantity": 150 }, { "itemId": "Aluminum_Casing", "quantity": 20 } @@ -2454,7 +2228,6 @@ }, { "id": "Plutonium_Fuel_Rod", - "name": "钚燃料棒", "inputs": [ { "itemId": "Encased_Plutonium_Cell", "quantity": 30 }, { "itemId": "Steel_Beam", "quantity": 18 }, @@ -2467,7 +2240,6 @@ }, { "id": "Plutonium_Fuel_Unit", - "name": "替代:钚燃料单元", "inputs": [ { "itemId": "Encased_Plutonium_Cell", "quantity": 20 }, { "itemId": "Pressure_Conversion_Cube", "quantity": 1 } @@ -2478,7 +2250,6 @@ }, { "id": "Turbo_Motor", - "name": "涡轮马达", "inputs": [ { "itemId": "Cooling_System", "quantity": 4 }, { "itemId": "Radio_Control_Unit", "quantity": 2 }, @@ -2491,7 +2262,6 @@ }, { "id": "Turbo_Electric_Motor", - "name": "替代:涡轮电磁马达", "inputs": [ { "itemId": "Motor", "quantity": 7 }, { "itemId": "Radio_Control_Unit", "quantity": 9 }, @@ -2504,7 +2274,6 @@ }, { "id": "Turbo_Pressure_Motor", - "name": "替代:涡轮增压马达", "inputs": [ { "itemId": "Motor", "quantity": 4 }, { "itemId": "Pressure_Conversion_Cube", "quantity": 1 }, @@ -2517,7 +2286,6 @@ }, { "id": "Copper_Powder", - "name": "铜粉", "inputs": [{ "itemId": "Copper_Ingot", "quantity": 30 }], "outputs": [{ "itemId": "Copper_Powder", "quantity": 5 }], "producedIn": "Constructor", @@ -2525,7 +2293,6 @@ }, { "id": "Pressure_Conversion_Cube", - "name": "封压方块", "inputs": [ { "itemId": "Fused_Modular_Frame", "quantity": 1 }, { "itemId": "Radio_Control_Unit", "quantity": 2 } @@ -2536,7 +2303,6 @@ }, { "id": "Nuclear_Pasta", - "name": "核意面", "inputs": [ { "itemId": "Copper_Powder", "quantity": 200 }, { "itemId": "Pressure_Conversion_Cube", "quantity": 1 } @@ -2548,7 +2314,6 @@ }, { "id": "Thermal_Propulsion_Rocket", - "name": "热能推进火箭", "inputs": [ { "itemId": "Modular_Engine", "quantity": 5 }, { "itemId": "Turbo_Motor", "quantity": 2 }, @@ -2561,7 +2326,6 @@ }, { "id": "Turbo_Blend_Fuel", - "name": "替代:混合涡轮燃油", "inputs": [ { "itemId": "Fuel", "quantity": 2 }, { "itemId": "Heavy_Oil_Residue", "quantity": 4 }, @@ -2574,7 +2338,6 @@ }, { "id": "Turbofuel", - "name": "涡轮燃油", "inputs": [ { "itemId": "Fuel", "quantity": 6 }, { "itemId": "Compacted_Coal", "quantity": 4 } @@ -2585,7 +2348,6 @@ }, { "id": "Turbo_Heavy_Fuel", - "name": "替代:重质涡轮燃油", "inputs": [ { "itemId": "Heavy_Oil_Residue", "quantity": 5 }, { "itemId": "Compacted_Coal", "quantity": 4 } @@ -2596,7 +2358,6 @@ }, { "id": "Packaged_Turbofuel", - "name": "桶装涡轮燃油", "inputs": [ { "itemId": "Turbofuel", "quantity": 2 }, { "itemId": "Empty_Canister", "quantity": 2 } @@ -2607,7 +2368,6 @@ }, { "id": "Ficsite_Ingot_(Iron)", - "name": "F金锭(铁)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 4 }, { "itemId": "Iron_Ingot", "quantity": 24 } @@ -2619,7 +2379,6 @@ }, { "id": "Ficsite_Ingot_(Aluminum)", - "name": "F金锭(铝)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 2 }, { "itemId": "Aluminum_Ingot", "quantity": 4 } @@ -2631,7 +2390,6 @@ }, { "id": "Ficsite_Ingot_(Caterium)", - "name": "F金锭(钦金)", "inputs": [ { "itemId": "Reanimated_SAM", "quantity": 3 }, { "itemId": "Caterium_Ingot", "quantity": 4 } @@ -2643,7 +2401,6 @@ }, { "id": "Ficsite_Trigon", - "name": "F金三角", "inputs": [{ "itemId": "Ficsite_Ingot", "quantity": 1 }], "outputs": [{ "itemId": "Ficsite_Trigon", "quantity": 3 }], "producedIn": "Constructor", @@ -2651,7 +2408,6 @@ }, { "id": "Diamonds", - "name": "钻石", "inputs": [{ "itemId": "Coal", "quantity": 20 }], "outputs": [{ "itemId": "Diamonds", "quantity": 1 }], "producedIn": "Particle_Accelerator", @@ -2660,7 +2416,6 @@ }, { "id": "Oil-Based_Diamonds", - "name": "替代:油基钻石", "inputs": [{ "itemId": "Crude_Oil", "quantity": 10 }], "outputs": [{ "itemId": "Diamonds", "quantity": 2 }], "producedIn": "Particle_Accelerator", @@ -2669,7 +2424,6 @@ }, { "id": "Pink_Diamonds", - "name": "替代:粉钻", "inputs": [ { "itemId": "Coal", "quantity": 8 }, { "itemId": "Quartz_Crystal", "quantity": 3 } @@ -2681,7 +2435,6 @@ }, { "id": "Cloudy_Diamonds", - "name": "替代:雾状钻石", "inputs": [ { "itemId": "Coal", "quantity": 12 }, { "itemId": "Limestone", "quantity": 24 } @@ -2693,7 +2446,6 @@ }, { "id": "Turbo_Diamonds", - "name": "替代:涡轮钻石", "inputs": [ { "itemId": "Coal", "quantity": 30 }, { "itemId": "Packaged_Turbofuel", "quantity": 2 } @@ -2705,7 +2457,6 @@ }, { "id": "Petroleum_Diamonds", - "name": "替代:石油钻石", "inputs": [{ "itemId": "Petroleum_Coke", "quantity": 24 }], "outputs": [{ "itemId": "Diamonds", "quantity": 1 }], "producedIn": "Particle_Accelerator", @@ -2714,7 +2465,6 @@ }, { "id": "Time_Crystal", - "name": "时间水晶", "inputs": [{ "itemId": "Diamonds", "quantity": 2 }], "outputs": [{ "itemId": "Time_Crystal", "quantity": 1 }], "producedIn": "Converter", @@ -2723,7 +2473,6 @@ }, { "id": "Biochemical_Sculptor", - "name": "生化塑造器", "inputs": [ { "itemId": "Assembly_Director_System", "quantity": 1 }, { "itemId": "Ficsite_Trigon", "quantity": 80 }, @@ -2735,7 +2484,6 @@ }, { "id": "Dark_Matter_Residue", - "name": "暗物质残渣", "inputs": [{ "itemId": "Reanimated_SAM", "quantity": 5 }], "outputs": [{ "itemId": "Dark_Matter_Residue", "quantity": 10 }], "producedIn": "Converter", @@ -2744,7 +2492,6 @@ }, { "id": "Superposition_Oscillator", - "name": "叠加态振荡器", "inputs": [ { "itemId": "Dark_Matter_Crystal", "quantity": 6 }, { "itemId": "Crystal_Oscillator", "quantity": 1 }, @@ -2761,7 +2508,6 @@ }, { "id": "Neural-Quantum_Processor", - "name": "神经量子处理器", "inputs": [ { "itemId": "Time_Crystal", "quantity": 5 }, { "itemId": "Supercomputer", "quantity": 1 }, @@ -2778,7 +2524,6 @@ }, { "id": "AI_Expansion_Server", - "name": "AI扩展伺服器", "inputs": [ { "itemId": "Magnetic_Field_Generator", "quantity": 1 }, { "itemId": "Neural-Quantum_Processor", "quantity": 1 }, @@ -2795,7 +2540,6 @@ }, { "id": "Ficsonium_Fuel_Rod", - "name": "镄燃料棒", "inputs": [ { "itemId": "Ficsonium", "quantity": 2 }, { "itemId": "Electromagnetic_Control_Rod", "quantity": 2 }, @@ -2812,7 +2556,6 @@ }, { "id": "Alien_Power_Matrix", - "name": "外星能量矩阵", "inputs": [ { "itemId": "SAM_Fluctuator", "quantity": 5 }, { "itemId": "Power_Shard", "quantity": 3 }, @@ -2829,7 +2572,6 @@ }, { "id": "Dark_Matter_Crystal", - "name": "暗物质晶体", "inputs": [ { "itemId": "Diamonds", "quantity": 1 }, { "itemId": "Dark_Matter_Residue", "quantity": 5 } @@ -2841,7 +2583,6 @@ }, { "id": "Dark_Matter_Trap", - "name": "替代:暗物质捕获器", "inputs": [ { "itemId": "Time_Crystal", "quantity": 1 }, { "itemId": "Dark_Matter_Residue", "quantity": 5 } @@ -2853,7 +2594,6 @@ }, { "id": "Dark_Matter_Crystallization", - "name": "替代:晶体化暗物质", "inputs": [{ "itemId": "Dark_Matter_Residue", "quantity": 10 }], "outputs": [{ "itemId": "Dark_Matter_Crystal", "quantity": 1 }], "producedIn": "Particle_Accelerator", @@ -2862,7 +2602,6 @@ }, { "id": "Excited_Photonic_Matter", - "name": "激发态光子物质", "inputs": [], "outputs": [{ "itemId": "Excited_Photonic_Matter", "quantity": 10 }], "producedIn": "Converter", @@ -2871,7 +2610,6 @@ }, { "id": "Explosive_Rebar", - "name": "爆炸铁棒弹", "inputs": [ { "itemId": "Iron_Rebar", "quantity": 2 }, { "itemId": "Smokeless_Powder", "quantity": 2 }, @@ -2883,7 +2621,6 @@ }, { "id": "Compacted_Coal", - "name": "替代:压缩煤", "inputs": [ { "itemId": "Coal", "quantity": 5 }, { "itemId": "Sulfur", "quantity": 5 } @@ -2894,7 +2631,6 @@ }, { "id": "Rocket_Fuel", - "name": "火箭燃料", "inputs": [ { "itemId": "Turbofuel", "quantity": 6 }, { "itemId": "Nitric_Acid", "quantity": 1 } @@ -2908,7 +2644,6 @@ }, { "id": "Ionized_Fuel", - "name": "电离燃油", "inputs": [ { "itemId": "Rocket_Fuel", "quantity": 16 }, { "itemId": "Power_Shard", "quantity": 1 } @@ -2922,7 +2657,6 @@ }, { "id": "Dark-Ion_Fuel", - "name": "替代:暗离子燃料", "inputs": [ { "itemId": "Packaged_Rocket_Fuel", "quantity": 12 }, { "itemId": "Dark_Matter_Crystal", "quantity": 4 } @@ -2937,7 +2671,6 @@ }, { "id": "Nitro_Rocket_Fuel", - "name": "替代:硝基火箭燃料", "inputs": [ { "itemId": "Fuel", "quantity": 4 }, { "itemId": "Nitrogen_Gas", "quantity": 3 }, @@ -2953,7 +2686,6 @@ }, { "id": "Packaged_Rocket_Fuel", - "name": "桶装火箭燃料", "inputs": [ { "itemId": "Rocket_Fuel", "quantity": 2 }, { "itemId": "Empty_Fluid_Tank", "quantity": 1 } @@ -2964,7 +2696,6 @@ }, { "id": "Packaged_Ionized_Fuel", - "name": "桶装电离燃油", "inputs": [ { "itemId": "Ionized_Fuel", "quantity": 4 }, { "itemId": "Empty_Fluid_Tank", "quantity": 2 } @@ -2975,7 +2706,6 @@ }, { "id": "Turbo_Rifle_Ammo", - "name": "涡轮步枪弹", "inputs": [ { "itemId": "Rifle_Ammo", "quantity": 25 }, { "itemId": "Aluminum_Casing", "quantity": 3 }, @@ -2987,7 +2717,6 @@ }, { "id": "Turbo_Rifle_Ammo_2", - "name": "涡轮步枪弹2", "inputs": [ { "itemId": "Rifle_Ammo", "quantity": 25 }, { "itemId": "Aluminum_Casing", "quantity": 3 }, @@ -2999,7 +2728,6 @@ }, { "id": "Nuke_Nobelisk", - "name": "核子诺氏雷筒", "inputs": [ { "itemId": "Nobelisk", "quantity": 5 }, { "itemId": "Encased_Uranium_Cell", "quantity": 20 }, @@ -3012,7 +2740,6 @@ }, { "id": "Ficsonium", - "name": "镄", "inputs": [ { "itemId": "Plutonium_Waste", "quantity": 1 }, { "itemId": "Singularity_Cell", "quantity": 1 }, @@ -3025,7 +2752,6 @@ }, { "id": "Singularity_Cell", - "name": "奇点电池", "inputs": [ { "itemId": "Nuclear_Pasta", "quantity": 1 }, { "itemId": "Dark_Matter_Crystal", "quantity": 20 }, @@ -3038,7 +2764,6 @@ }, { "id": "Ballistic_Warp_Drive", - "name": "弹道跃迁引擎", "inputs": [ { "itemId": "Thermal_Propulsion_Rocket", "quantity": 1 }, { "itemId": "Singularity_Cell", "quantity": 5 }, diff --git a/src/locales/buildings/en.yml b/src/locales/buildings/en.yml new file mode 100644 index 0000000..e742235 --- /dev/null +++ b/src/locales/buildings/en.yml @@ -0,0 +1,12 @@ +buildings: + Constructor: Constructor + Assembler: Assembler + Manufacturer: Manufacturer + Packager: Packager + Refinery: Refinery + Blender: Blender + Particle_Accelerator: Particle Accelerator + Converter: Converter + Quantum_Encoder: Quantum Encoder + Smelter: Smelter + Foundry: Foundry diff --git a/src/locales/buildings/zh-CN.yml b/src/locales/buildings/zh-CN.yml new file mode 100644 index 0000000..33923f5 --- /dev/null +++ b/src/locales/buildings/zh-CN.yml @@ -0,0 +1,12 @@ +buildings: + Constructor: 构筑站 + Assembler: 装配站 + Manufacturer: 制造站 + Packager: 灌装站 + Refinery: 精炼站 + Blender: 混料站 + Particle_Accelerator: 粒子加速器 + Converter: 转化站 + Quantum_Encoder: 量子编码站 + Smelter: 冶炼站 + Foundry: 铸造站 diff --git a/src/locales/items/en.yml b/src/locales/items/en.yml new file mode 100644 index 0000000..cb53964 --- /dev/null +++ b/src/locales/items/en.yml @@ -0,0 +1,154 @@ +items: + Iron_Ingot: Iron Ingot + Iron_Ore: Iron Ore + Iron_Plate: Iron Plate + Iron_Rod: Iron Rod + Reinforced_Iron_Plate: Reinforced Iron Plate + Cable: Cable + Wire: Wire + Copper_Ingot: Copper Ingot + Copper_Ore: Copper Ore + Concrete: Concrete + Limestone: Limestone + Screw: Screw + Biomass: Biomass + Wood: Wood + Leaves: Leaves + Alien_Protein: Alien Protein + Hog_Remains: Hog Remains + Solid_Biofuel: Solid Biofuel + Rotor: Rotor + Copper_Sheet: Copper Sheet + Modular_Frame: Modular Frame + Smart_Plating: Smart Plating + Power_Shard: Power Shard + Blue_Power_Slug: Blue Power Slug + Mycelia: Mycelia + Steel_Ingot: Steel Ingot + Coal: Coal + Steel_Beam: Steel Beam + Steel_Pipe: Steel Pipe + Versatile_Framework: Versatile Framework + Stinger_Remains: Stinger Remains + Silica: Silica + Raw_Quartz: Raw Quartz + Yellow_Power_Slug: Yellow Power Slug + Hatcher_Remains: Hatcher Remains + Spitter_Remains: Spitter Remains + Alien_DNA_Capsule: Alien DNA Capsule + Black_Powder: Black Powder + Sulfur: Sulfur + Fabric: Fabric + Iron_Rebar: Iron Rebar + Gas_Filter: Gas Filter + Nobelisk: Nobelisk + Quartz_Crystal: Quartz Crystal + Crystal_Oscillator: Crystal Oscillator + Shatter_Rebar: Shatter Rebar + Encased_Industrial_Beam: Encased Industrial Beam + Stator: Stator + Motor: Motor + Automated_Wiring: Automated Wiring + Gas_Nobelisk: Gas Nobelisk + Purple_Power_Slug: Purple Power Slug + Reanimated_SAM: Reanimated SAM + SAM: SAM + Caterium_Ingot: Caterium Ingot + Caterium_Ore: Caterium Ore + SAM_Fluctuator: SAM Fluctuator + Mercer_Sphere: Mercer Sphere + Quickwire: Quickwire + Stun_Rebar: Stun Rebar + AI_Limiter: AI Limiter + Petroleum_Coke: Petroleum Coke + Heavy_Oil_Residue: Heavy Oil Residue + Circuit_Board: Circuit Board + Plastic: Plastic + Polymer_Resin: Polymer Resin + Water: Water + Rubber: Rubber + Fuel: Fuel + Crude_Oil: Crude Oil + High-Speed_Connector: High-Speed Connector + Empty_Canister: Empty Canister + Packaged_Water: Packaged Water + Packaged_Oil: Packaged Oil + Packaged_Fuel: Packaged Fuel + Packaged_Heavy_Oil_Residue: Packaged Heavy Oil Residue + Packaged_Liquid_Biofuel: Packaged Liquid Biofuel + Liquid_Biofuel: Liquid Biofuel + Computer: Computer + Heavy_Modular_Frame: Heavy Modular Frame + Modular_Engine: Modular Engine + Adaptive_Control_Unit: Adaptive Control Unit + Smokeless_Powder: Smokeless Powder + Somersloop: Somersloop + Pulse_Nobelisk: Pulse Nobelisk + Rifle_Ammo: Rifle Ammo + Alclad_Aluminum_Sheet: Alclad Aluminum Sheet + Iodine-Infused_Filter: Iodine-Infused Filter + Aluminum_Casing: Aluminum Casing + Cluster_Nobelisk: Cluster Nobelisk + Homing_Rifle_Ammo: Homing Rifle Ammo + Alumina_Solution: Alumina Solution + Bauxite: Bauxite + Packaged_Alumina_Solution: Packaged Alumina Solution + Aluminum_Scrap: Aluminum Scrap + Aluminum_Ingot: Aluminum Ingot + Sulfuric_Acid: Sulfuric Acid + Packaged_Sulfuric_Acid: Packaged Sulfuric Acid + Battery: Battery + Radio_Control_Unit: Radio Control Unit + Supercomputer: Supercomputer + Assembly_Director_System: Assembly Director System + Empty_Fluid_Tank: Empty Fluid Tank + Packaged_Nitrogen_Gas: Packaged Nitrogen Gas + Nitrogen_Gas: Nitrogen Gas + Heat_Sink: Heat Sink + Cooling_System: Cooling System + Fused_Modular_Frame: Fused Modular Frame + Dissolved_Silica: Dissolved Silica + Nitric_Acid: Nitric Acid + Encased_Uranium_Cell: Encased Uranium Cell + Uranium: Uranium + Electromagnetic_Control_Rod: Electromagnetic Control Rod + Uranium_Fuel_Rod: Uranium Fuel Rod + Magnetic_Field_Generator: Magnetic Field Generator + Packaged_Nitric_Acid: Packaged Nitric Acid + Non-Fissile_Uranium: Non-Fissile Uranium + Uranium_Waste: Uranium Waste + Plutonium_Pellet: Plutonium Pellet + Encased_Plutonium_Cell: Encased Plutonium Cell + Plutonium_Fuel_Rod: Plutonium Fuel Rod + Turbo_Motor: Turbo Motor + Copper_Powder: Copper Powder + Pressure_Conversion_Cube: Pressure Conversion Cube + Nuclear_Pasta: Nuclear Pasta + Thermal_Propulsion_Rocket: Thermal Propulsion Rocket + Turbofuel: Turbofuel + Packaged_Turbofuel: Packaged Turbofuel + Ficsite_Ingot: Ficsite Ingot + Ficsite_Trigon: Ficsite Trigon + Diamonds: Diamonds + Time_Crystal: Time Crystal + Biochemical_Sculptor: Biochemical Sculptor + Dark_Matter_Residue: Dark Matter Residue + Dark_Matter_Crystal: Dark Matter Crystal + Excited_Photonic_Matter: Excited Photonic Matter + Explosive_Rebar: Explosive Rebar + Compacted_Coal: Compacted Coal + Rocket_Fuel: Rocket Fuel + Packaged_Rocket_Fuel: Packaged Rocket Fuel + Ionized_Fuel: Ionized Fuel + Packaged_Ionized_Fuel: Packaged Ionized Fuel + Turbo_Rifle_Ammo: Turbo Rifle Ammo + Superposition_Oscillator: Superposition Oscillator + Neural-Quantum_Processor: Neural-Quantum Processor + AI_Expansion_Server: AI Expansion Server + Nuke_Nobelisk: Nuke Nobelisk + Ficsonium: Ficsonium + Plutonium_Waste: Plutonium Waste + Singularity_Cell: Singularity Cell + Ficsonium_Fuel_Rod: Ficsonium Fuel Rod + Ballistic_Warp_Drive: Ballistic Warp Drive + Alien_Power_Matrix: Alien Power Matrix diff --git a/src/locales/items/zh-CN.yml b/src/locales/items/zh-CN.yml new file mode 100644 index 0000000..47b0504 --- /dev/null +++ b/src/locales/items/zh-CN.yml @@ -0,0 +1,154 @@ +items: + Iron_Ingot: 铁锭 + Iron_Ore: 铁矿石 + Iron_Plate: 铁板 + Iron_Rod: 铁棒 + Reinforced_Iron_Plate: 强化铁板 + Cable: 电缆 + Wire: 电线 + Copper_Ingot: 铜锭 + Copper_Ore: 铜矿石 + Concrete: 混凝土 + Limestone: 石灰石 + Screw: 螺丝 + Biomass: 生物质 + Wood: 木材 + Leaves: 树叶 + Alien_Protein: 外星生物蛋白质 + Hog_Remains: 野猪残骸 + Solid_Biofuel: 固态生物燃料 + Rotor: 转子 + Copper_Sheet: 铜板 + Modular_Frame: 模块化框架 + Smart_Plating: 智能嵌板 + Power_Shard: 能量碎片 + Blue_Power_Slug: 蓝色能量蛞蝓 + Mycelia: 菌丝体 + Steel_Ingot: 钢锭 + Coal: 煤 + Steel_Beam: 钢梁 + Steel_Pipe: 钢管 + Versatile_Framework: 多功能框架 + Stinger_Remains: 刺蛛残骸 + Silica: 二氧化硅 + Raw_Quartz: 粗石英 + Yellow_Power_Slug: 黄色能量蛞蝓 + Hatcher_Remains: 孵化巢残骸 + Spitter_Remains: 吐射兽残骸 + Alien_DNA_Capsule: 外星DNA胶囊 + Black_Powder: 黑火药 + Sulfur: 硫磺 + Fabric: 纤维织物 + Iron_Rebar: 铁棒弹 + Gas_Filter: 气体过滤器 + Nobelisk: 诺氏雷筒 + Quartz_Crystal: 石英晶体 + Crystal_Oscillator: 晶体振荡器 + Shatter_Rebar: 散射铁棒弹 + Encased_Industrial_Beam: 钢筋混凝土梁 + Stator: 定子 + Motor: 马达 + Automated_Wiring: 自动化线缆 + Gas_Nobelisk: 毒气诺石 + Purple_Power_Slug: 紫色能量蛞蝓 + Reanimated_SAM: 活性SAM物质 + SAM: SAM物质 + Caterium_Ingot: 钦金锭 + Caterium_Ore: 钦金矿石 + SAM_Fluctuator: SAM物质波波动器 + Mercer_Sphere: 梅瑟尔球 + Quickwire: 急速电线 + Stun_Rebar: 电击铁棒弹 + AI_Limiter: AI限制器 + Petroleum_Coke: 石油焦 + Heavy_Oil_Residue: 重油残渣 + Circuit_Board: 电路板 + Plastic: 塑料 + Polymer_Resin: 聚合树脂 + Water: 水 + Rubber: 橡胶 + Fuel: 燃料 + Crude_Oil: 原油 + High-Speed_Connector: 高速连接器 + Empty_Canister: 空桶 + Packaged_Water: 桶装水 + Packaged_Oil: 桶装原油 + Packaged_Fuel: 桶装燃油 + Packaged_Heavy_Oil_Residue: 桶装重油残渣 + Packaged_Liquid_Biofuel: 桶装液态生物燃料 + Liquid_Biofuel: 液态生物燃料 + Computer: 计算机 + Heavy_Modular_Frame: 重型模块化框架 + Modular_Engine: 模块化引擎 + Adaptive_Control_Unit: 自适应控制单元 + Smokeless_Powder: 无烟火药 + Somersloop: 索莫晶体 + Pulse_Nobelisk: 脉冲诺石 + Rifle_Ammo: 步枪弹药 + Alclad_Aluminum_Sheet: 复合铝板 + Iodine-Infused_Filter: 碘化过滤器 + Aluminum_Casing: 铝制外壳 + Cluster_Nobelisk: 集束诺氏雷筒 + Homing_Rifle_Ammo: 追踪步枪弹 + Alumina_Solution: 氧化铝溶液 + Bauxite: 铝土矿 + Packaged_Alumina_Solution: 桶装氧化铝溶液 + Aluminum_Scrap: 碎铝渣 + Aluminum_Ingot: 铝锭 + Sulfuric_Acid: 硫酸 + Packaged_Sulfuric_Acid: 桶装硫酸 + Battery: 电池 + Radio_Control_Unit: 无线电控制单元 + Supercomputer: 超级计算机 + Assembly_Director_System: 组装编导系统 + Empty_Fluid_Tank: 空瓶 + Packaged_Nitrogen_Gas: 瓶装氮气 + Nitrogen_Gas: 氮气 + Heat_Sink: 散热器 + Cooling_System: 冷却系统 + Fused_Modular_Frame: 焊接模块化框架 + Dissolved_Silica: 二氧化硅溶解液 + Nitric_Acid: 硝酸 + Encased_Uranium_Cell: 封装铀棒 + Uranium: 铀 + Electromagnetic_Control_Rod: 电磁控制杆 + Uranium_Fuel_Rod: 铀燃料棒 + Magnetic_Field_Generator: 磁场发生器 + Packaged_Nitric_Acid: 桶装硝酸 + Non-Fissile_Uranium: 非裂变贫铀 + Uranium_Waste: 铀废料 + Plutonium_Pellet: 钚丸 + Encased_Plutonium_Cell: 封装钚棒 + Plutonium_Fuel_Rod: 钚燃料棒 + Turbo_Motor: 涡轮马达 + Copper_Powder: 铜粉 + Pressure_Conversion_Cube: 封压方块 + Nuclear_Pasta: 核意面 + Thermal_Propulsion_Rocket: 热能推进火箭 + Turbofuel: 涡轮燃油 + Packaged_Turbofuel: 桶装涡轮燃油 + Ficsite_Ingot: F金锭 + Ficsite_Trigon: F金三角 + Diamonds: 钻石 + Time_Crystal: 时间水晶 + Biochemical_Sculptor: 生化塑造器 + Dark_Matter_Residue: 暗物质残渣 + Dark_Matter_Crystal: 暗物质晶体 + Excited_Photonic_Matter: 激发态光子物质 + Explosive_Rebar: 爆炸铁棒弹 + Compacted_Coal: 压缩煤 + Rocket_Fuel: 火箭燃料 + Packaged_Rocket_Fuel: 桶装火箭燃料 + Ionized_Fuel: 电离燃油 + Packaged_Ionized_Fuel: 桶装电离燃油 + Turbo_Rifle_Ammo: 涡轮步枪弹 + Superposition_Oscillator: 叠加态振荡器 + Neural-Quantum_Processor: 神经量子处理器 + AI_Expansion_Server: AI扩展伺服器 + Nuke_Nobelisk: 核子诺氏雷筒 + Ficsonium: 镄 + Plutonium_Waste: 钚废料 + Singularity_Cell: 奇点电池 + Ficsonium_Fuel_Rod: 镄燃料棒 + Ballistic_Warp_Drive: 弹道跃迁引擎 + Alien_Power_Matrix: 外星能量矩阵 diff --git a/src/locales/recipes/en.yml b/src/locales/recipes/en.yml new file mode 100644 index 0000000..69a8d92 --- /dev/null +++ b/src/locales/recipes/en.yml @@ -0,0 +1,276 @@ +recipes: + Iron_Ingot: Iron Ingot + Pure_Iron_Ingot: Pure Iron Ingot + Basic_Iron_Ingot: Basic Iron Ingot + Iron_Alloy_Ingot: Iron Alloy Ingot + Leached_Iron_Ingot: Leached Iron Ingot + Iron_Ore_(Limestone): Iron Ore (Limestone) + Iron_Plate: Iron Plate + Coated_Iron_Plate: Coated Iron Plate + Steel_Cast_Plate: Steel Cast Plate + Iron_Rod: Iron Rod + Steel_Rod: Steel Rod + Aluminum_Rod: Aluminum Rod + Reinforced_Iron_Plate: Reinforced Iron Plate + Stitched_Iron_Plate: Stitched Iron Plate + Adhered_Iron_Plate: Adhered Iron Plate + Bolted_Iron_Plate: Bolted Iron Plate + Cable: Cable + Quickwire_Cable: Quickwire Cable + Insulated_Cable: Insulated Cable + Coated_Cable: Coated Cable + Wire: Wire + Caterium_Wire: Caterium Wire + Iron_Wire: Iron Wire + Fused_Wire: Fused Wire + Copper_Ingot: Copper Ingot + Tempered_Copper_Ingot: Tempered Copper Ingot + Pure_Copper_Ingot: Pure Copper Ingot + Leached_Copper_Ingot: Leached Copper Ingot + Copper_Alloy_Ingot: Copper Alloy Ingot + Copper_Ore_(Quartz): Copper Ore (Quartz) + Copper_Ore_(Sulfur): Copper Ore (Sulfur) + Concrete: Concrete + Wet_Concrete: Wet Concrete + Fine_Concrete: Fine Concrete + Rubber_Concrete: Rubber Concrete + Limestone_(Sulfur): Limestone (Sulfur) + Screw: Screw + Cast_Screw: Cast Screw + Steel_Screw: Steel Screw + Biomass_(Wood): Biomass (Wood) + Biomass_(Leaves): Biomass (Leaves) + Biomass_(Mycelia): Biomass (Mycelia) + Biomass_(Alien_Protein): Biomass (Alien Protein) + Hog_Protein: Hog Protein + Stinger_Protein: Stinger Protein + Hatcher_Protein: Hatcher Protein + Spitter_Protein: Spitter Protein + Solid_Biofue: Solid Biofue + Rotor: Rotor + Copper_Rotor: Copper Rotor + Steel_Rotor: Steel Rotor + Copper_Sheet: Copper Sheet + Steamed_Copper_Sheet: Steamed Copper Sheet + Modular_Frame: Modular Frame + Bolted_Frame: Bolted Frame + Steeled_Frame: Steeled Frame + Smart_Plating: Smart Plating + Plastic_Smart_Plating: Plastic Smart Plating + Power_Shard_(1): Power Shard (1) + Power_Shard_(2): Power Shard (2) + Power_Shard_(5): Power Shard (5) + Synthetic_Power_Shard: Synthetic Power Shard + Steel_Ingot: Steel Ingot + Solid_Steel_Ingot: Solid Steel Ingot + Coke_Steel_Ingot: Coke Steel Ingot + Compacted_Steel_Ingot: Compacted Steel Ingot + Coal_(Iron): Coal (Iron) + Coal_(Limestone): Coal (Limestone) + Charcoal: Charcoal + Biocoal: Biocoal + Steel_Beam: Steel Beam + Molded_Beam: Molded Beam + Aluminum_Beam: Aluminum Beam + Steel_Pipe: Steel Pipe + Molded_Steel_Pipe: Molded Steel Pipe + Iron_Pipe: Iron Pipe + Versatile_Framework: Versatile Framework + Flexible_Framework: Flexible Framework + Silica: Silica + Alumina_Solution: Alumina Solution + Cheap_Silica: Cheap Silica + Distilled_Silica: Distilled Silica + Raw_Quartz_(Bauxite): Raw Quartz (Bauxite) + Raw_Quartz_(Coal): Raw Quartz (Coal) + Alien_DNA_Capsule: Alien DNA Capsule + Black_Powder: Black Powder + Fine_Black_Powder: Fine Black Powder + Sulfur_(Coal): Sulfur (Coal) + Sulfur_(Iron): Sulfur (Iron) + Fabric: Fabric + Polyester_Fabric: Polyester Fabric + Iron_Rebar: Iron Rebar + Gas_Filter: Gas Filter + Nobelisk: Nobelisk + Quartz_Crystal: Quartz Crystal + Pure_Quartz_Crystal: Pure Quartz Crystal + Quartz_Purification: Quartz Purification + Fused_Quartz_Crystal: Fused Quartz Crystal + Crystal_Oscillator: Crystal Oscillator + Insulated_Crystal_Oscillator: Insulated Crystal Oscillator + Shatter_Rebar: Shatter Rebar + Encased_Industrial_Beam: Encased Industrial Beam + Encased_Industrial_Pipe: Encased Industrial Pipe + Stator: Stator + Quickwire_Stator: Quickwire Stator + Motor: Motor + Rigor_Motor: Rigor Motor + Electric_Motor: Electric Motor + Automated_Wiring: Automated Wiring + Automated_Speed_Wiring: Automated Speed Wiring + Gas_Nobelisk: Gas Nobelisk + Reanimated_SAM: Reanimated SAM + Caterium_Ingot: Caterium Ingot + Pure_Caterium_Ingot: Pure Caterium Ingot + Leached_Caterium_Ingot: Leached Caterium Ingot + Tempered_Caterium_Ingot: Tempered Caterium Ingot + Caterium_Ore_(Copper): Caterium Ore (Copper) + Caterium_Ore_(Quartz): Caterium Ore (Quartz) + SAM_Fluctuator: SAM Fluctuator + Quickwire: Quickwire + Fused_Quickwire: Fused Quickwire + Stun_Rebar: Stun Rebar + AI_Limiter: AI Limiter + Plastic_AI_Limiter: Plastic AI Limiter + Petroleum_Coke: Petroleum Coke + Plastic: Plastic + Rubber: Rubber + Unpackage_Heavy_Oil_Residue: Unpackage Heavy Oil Residue + Polymer_Resin: Polymer Resin + Heavy_Oil_Residue: Heavy Oil Residue + Circuit_Board: Circuit Board + Silicon_Circuit_Board: Silicon Circuit Board + Caterium_Circuit_Board: Caterium Circuit Board + Electrode_Circuit_Board: Electrode Circuit Board + Residual_Plastic: Residual Plastic + Recycled_Plastic: Recycled Plastic + Fuel: Fuel + Unpackage_Water: Unpackage Water + Aluminum_Scrap: Aluminum Scrap + Electrode_Aluminum_Scrap: Electrode Aluminum Scrap + Battery: Battery + Non-Fissile_Uranium: Non-Fissile Uranium + Fertile_Uranium: Fertile Uranium + Instant_Scrap: Instant Scrap + Residual_Rubber: Residual Rubber + Recycled_Rubber: Recycled Rubber + Residual_Fuel: Residual Fuel + Unpackage_Fuel: Unpackage Fuel + Diluted_Fuel: Diluted Fuel + Unpackage_Oil: Unpackage Oil + High-Speed_Connector: High-Speed Connector + Silicon_High-Speed_Connector: Silicon High-Speed Connector + Empty_Canister: Empty Canister + Unpackage_Liquid_Biofuel: Unpackage Liquid Biofuel + Coated_Iron_Canister: Coated Iron Canister + Unpackage_Alumina_Solution: Unpackage Alumina Solution + Steel_Canister: Steel Canister + Unpackage_Sulfuric_Acid: Unpackage Sulfuric Acid + Unpackage_Turbofuel: Unpackage Turbofuel + Packaged_Water: Packaged Water + Packaged_Oil: Packaged Oil + Packaged_Fuel: Packaged Fuel + Diluted_Packaged_Fuel: Diluted Packaged Fuel + Packaged_Heavy_Oil_Residue: Packaged Heavy Oil Residue + Packaged_Liquid_Biofuel: Packaged Liquid Biofuel + Liquid_Biofuel: Liquid Biofuel + Computer: Computer + Caterium_Computer: Caterium Computer + Crystal_Computer: Crystal Computer + Heavy_Modular_Frame: Heavy Modular Frame + Heavy_Encased_Frame: Heavy Encased Frame + Heavy_Flexible_Frame: Heavy Flexible Frame + Modular_Engine: Modular Engine + Adaptive_Control_Unit: Adaptive Control Unit + Smokeless_Powder: Smokeless Powder + Pulse_Nobelisk: Pulse Nobelisk + Rifle_Ammo: Rifle Ammo + Alclad_Aluminum_Sheet: Alclad Aluminum Sheet + Iodine-Infused_Filter: Iodine-Infused Filter + Aluminum_Casing: Aluminum Casing + Alclad_Casing: Alclad Casing + Cluster_Nobelisk: Cluster Nobelisk + Homing_Rifle_Ammo: Homing Rifle Ammo + Sloppy_Alumina: Sloppy Alumina + Bauxite_(Caterium): Bauxite (Caterium) + Bauxite_(Copper): Bauxite (Copper) + Packaged_Alumina_Solution: Packaged Alumina Solution + Aluminum_Ingot: Aluminum Ingot + Pure_Aluminum_Ingot: Pure Aluminum Ingot + Sulfuric_Acid: Sulfuric Acid + Encased_Uranium_Cell: Encased Uranium Cell + Packaged_Sulfuric_Acid: Packaged Sulfuric Acid + Classic_Battery: Classic Battery + Radio_Control_Unit: Radio Control Unit + Radio_Control_System: Radio Control System + Radio_Connection_Unit: Radio Connection Unit + Supercomputer: Supercomputer + OC_Supercomputer: OC Supercomputer + Super-State_Computer: Super-State Computer + Assembly_Director_System: Assembly Director System + Empty_Fluid_Tank: Empty Fluid Tank + Unpackage_Nitrogen_Gas: Unpackage Nitrogen Gas + Unpackage_Nitric_Acid: Unpackage Nitric Acid + Unpackage_Rocket_Fuel: Unpackage Rocket Fuel + Unpackage_Ionized_Fuel: Unpackage Ionized Fuel + Packaged_Nitrogen_Gas: Packaged Nitrogen Gas + Nitrogen_Gas_(Bauxite): Nitrogen Gas (Bauxite) + Nitrogen_Gas_(Caterium): Nitrogen Gas (Caterium) + Heat_Sink: Heat Sink + Heat_Exchanger: Heat Exchanger + Cooling_System: Cooling System + Cooling_Device: Cooling Device + Fused_Modular_Frame: Fused Modular Frame + Heat-Fused_Frame: Heat-Fused Frame + Nitric_Acid: Nitric Acid + Infused_Uranium_Cell: Infused Uranium Cell + Uranium_Ore_(Bauxite): Uranium Ore (Bauxite) + Electromagnetic_Control_Rod: Electromagnetic Control Rod + Electromagnetic_Connection_Rod: Electromagnetic Connection Rod + Uranium_Fuel_Rod: Uranium Fuel Rod + Uranium_Fuel_Unit: Uranium Fuel Unit + Magnetic_Field_Generator: Magnetic Field Generator + Packaged_Nitric_Acid: Packaged Nitric Acid + Plutonium_Pellet: Plutonium Pellet + Encased_Plutonium_Cell: Encased Plutonium Cell + Instant_Plutonium_Cell: Instant Plutonium Cell + Plutonium_Fuel_Rod: Plutonium Fuel Rod + Plutonium_Fuel_Unit: Plutonium Fuel Unit + Turbo_Motor: Turbo Motor + Turbo_Electric_Motor: Turbo Electric Motor + Turbo_Pressure_Motor: Turbo Pressure Motor + Copper_Powder: Copper Powder + Pressure_Conversion_Cube: Pressure Conversion Cube + Nuclear_Pasta: Nuclear Pasta + Thermal_Propulsion_Rocket: Thermal Propulsion Rocket + Turbo_Blend_Fuel: Turbo Blend Fuel + Turbofuel: Turbofuel + Turbo_Heavy_Fuel: Turbo Heavy Fuel + Packaged_Turbofuel: Packaged Turbofuel + Ficsite_Ingot_(Iron): Ficsite Ingot (Iron) + Ficsite_Ingot_(Aluminum): Ficsite Ingot (Aluminum) + Ficsite_Ingot_(Caterium): Ficsite Ingot (Caterium) + Ficsite_Trigon: Ficsite Trigon + Diamonds: Diamonds + Oil-Based_Diamonds: Oil-Based Diamonds + Pink_Diamonds: Pink Diamonds + Cloudy_Diamonds: Cloudy Diamonds + Turbo_Diamonds: Turbo Diamonds + Petroleum_Diamonds: Petroleum Diamonds + Time_Crystal: Time Crystal + Biochemical_Sculptor: Biochemical Sculptor + Dark_Matter_Residue: Dark Matter Residue + Superposition_Oscillator: Superposition Oscillator + Neural-Quantum_Processor: Neural-Quantum Processor + AI_Expansion_Server: AI Expansion Server + Ficsonium_Fuel_Rod: Ficsonium Fuel Rod + Alien_Power_Matrix: Alien Power Matrix + Dark_Matter_Crystal: Dark Matter Crystal + Dark_Matter_Trap: Dark Matter Trap + Dark_Matter_Crystallization: Dark Matter Crystallization + Excited_Photonic_Matter: Excited Photonic Matter + Explosive_Rebar: Explosive Rebar + Compacted_Coal: Compacted Coal + Rocket_Fuel: Rocket Fuel + Ionized_Fuel: Ionized Fuel + Dark-Ion_Fuel: Dark-Ion Fuel + Nitro_Rocket_Fuel: Nitro Rocket Fuel + Packaged_Rocket_Fuel: Packaged Rocket Fuel + Packaged_Ionized_Fuel: Packaged Ionized Fuel + Turbo_Rifle_Ammo: Turbo Rifle Ammo + Turbo_Rifle_Ammo_2: Turbo Rifle Ammo + Nuke_Nobelisk: Nuke Nobelisk + Ficsonium: Ficsonium + Singularity_Cell: Singularity Cell + Ballistic_Warp_Drive: Ballistic Warp Drive diff --git a/src/locales/recipes/zh-CN.yml b/src/locales/recipes/zh-CN.yml new file mode 100644 index 0000000..f7737ff --- /dev/null +++ b/src/locales/recipes/zh-CN.yml @@ -0,0 +1,276 @@ +recipes: + Iron_Ingot: 铁锭 + Pure_Iron_Ingot: 替代:高纯度铁锭 + Basic_Iron_Ingot: 替代:基础钢铁 + Iron_Alloy_Ingot: 替代:铁合金锭 + Leached_Iron_Ingot: 替代:滤化铁锭 + Iron_Ore_(Limestone): 铁矿石(石灰石) + Iron_Plate: 铁板 + Coated_Iron_Plate: 替代:镀层铁板 + Steel_Cast_Plate: 替代:铸钢板 + Iron_Rod: 铁棒 + Steel_Rod: 替代:钢棒 + Aluminum_Rod: 替代:铝棒 + Reinforced_Iron_Plate: 强化铁板 + Stitched_Iron_Plate: 替代:拼接铁板 + Adhered_Iron_Plate: 替代:粘合铁板 + Bolted_Iron_Plate: 替代:铆接铁板 + Cable: 电缆 + Quickwire_Cable: 替代:急速电缆 + Insulated_Cable: 替代:绝缘电缆 + Coated_Cable: 替代:镀层电缆 + Wire: 电线 + Caterium_Wire: 替代:钦金电线 + Iron_Wire: 替代:铁制电线 + Fused_Wire: 替代:熔合电线 + Copper_Ingot: 铜锭 + Tempered_Copper_Ingot: 替代:回火铜锭 + Pure_Copper_Ingot: 替代:高纯度铜锭 + Leached_Copper_Ingot: 替代:滤化铜锭 + Copper_Alloy_Ingot: 替代:铜合金锭 + Copper_Ore_(Quartz): 铜矿石(石英) + Copper_Ore_(Sulfur): 铜矿石(硫磺) + Concrete: 混凝土 + Wet_Concrete: 替代:塑性混凝土 + Fine_Concrete: 替代:细末混凝土 + Rubber_Concrete: 替代:橡胶混凝土 + Limestone_(Sulfur): 石灰石(硫磺) + Screw: 螺丝 + Cast_Screw: 替代:铸铁螺丝 + Steel_Screw: 替代:钢制螺丝 + Biomass_(Wood): 生物质(木材) + Biomass_(Leaves): 生物质(树叶) + Biomass_(Mycelia): 生物质(菌丝体) + Biomass_(Alien_Protein): 生物质(外星生物蛋白质) + Hog_Protein: 野猪蛋白质 + Stinger_Protein: 刺蛛蛋白质 + Hatcher_Protein: 孵化巢蛋白质 + Spitter_Protein: 吐射兽蛋白质 + Solid_Biofue: 固态生物燃料 + Rotor: 转子 + Copper_Rotor: 替代:铜制转子 + Steel_Rotor: 替代:钢制转子 + Copper_Sheet: 铜板 + Steamed_Copper_Sheet: 替代:热压铜板 + Modular_Frame: 模块化框架 + Bolted_Frame: 替代:铆接式框架 + Steeled_Frame: 替代:钢制框架 + Smart_Plating: 智能嵌板 + Plastic_Smart_Plating: 替代:塑料智能嵌板 + Power_Shard_(1): 能量碎片(1) + Power_Shard_(2): 能量碎片(2) + Power_Shard_(5): 能量碎片(5) + Synthetic_Power_Shard: 合成能量碎片 + Steel_Ingot: 钢锭 + Solid_Steel_Ingot: 替代:坚固钢锭 + Coke_Steel_Ingot: 替代:高碳钢锭 + Compacted_Steel_Ingot: 替代:致密钢锭 + Coal_(Iron): 煤(铁) + Coal_(Limestone): 煤(石灰石) + Charcoal: 替代:木炭 + Biocoal: 替代:生物煤 + Steel_Beam: 钢梁 + Molded_Beam: 替代:浇铸梁 + Aluminum_Beam: 替代:铝制梁 + Steel_Pipe: 钢管 + Molded_Steel_Pipe: 替代:浇铸钢管 + Iron_Pipe: 替代:铁制管道 + Versatile_Framework: 多功能框架 + Flexible_Framework: 替代:灵活型框架 + Silica: 二氧化硅 + Alumina_Solution: 氧化铝溶液 + Cheap_Silica: 替代:粗制二氧化硅 + Distilled_Silica: 替代:提纯二氧化硅 + Raw_Quartz_(Bauxite): 粗石英(铝土矿) + Raw_Quartz_(Coal): 粗石英(煤) + Alien_DNA_Capsule: 外星DNA胶囊 + Black_Powder: 黑火药 + Fine_Black_Powder: 替代:细末黑火药 + Sulfur_(Coal): 硫磺(煤) + Sulfur_(Iron): 硫磺(铁) + Fabric: 纤维织物 + Polyester_Fabric: 替代:聚酯纤维织物 + Iron_Rebar: 铁棒弹 + Gas_Filter: 气体过滤器 + Nobelisk: 诺氏雷筒 + Quartz_Crystal: 石英晶体 + Pure_Quartz_Crystal: 替代:纯石英晶体 + Quartz_Purification: 替代:石英净化 + Fused_Quartz_Crystal: 替代:熔合石英晶体 + Crystal_Oscillator: 晶体振荡器 + Insulated_Crystal_Oscillator: 替代:绝缘晶体振荡器 + Shatter_Rebar: 散射铁棒弹 + Encased_Industrial_Beam: 钢筋混凝土梁 + Encased_Industrial_Pipe: 替代:钢管混凝土梁 + Stator: 定子 + Quickwire_Stator: 替代:急速电线定子 + Motor: 马达 + Rigor_Motor: 替代:牢固马达 + Electric_Motor: 替代:电磁马达 + Automated_Wiring: 自动化线缆 + Automated_Speed_Wiring: 替代:自动化高速线缆 + Gas_Nobelisk: 毒气诺石 + Reanimated_SAM: 活性SAM物质 + Caterium_Ingot: 钦金锭 + Pure_Caterium_Ingot: 替代:高纯度钦金锭 + Leached_Caterium_Ingot: 替代:滤化钦金锭 + Tempered_Caterium_Ingot: 替代:回火钦金锭 + Caterium_Ore_(Copper): 钦金矿石(铜) + Caterium_Ore_(Quartz): 钦金矿石(石英) + SAM_Fluctuator: SAM物质波波动器 + Quickwire: 急速电线 + Fused_Quickwire: 替代:熔合急速电线 + Stun_Rebar: 电击铁棒弹 + AI_Limiter: AI限制器 + Plastic_AI_Limiter: 替代:塑料AI限制器 + Petroleum_Coke: 石油焦 + Plastic: 塑料 + Rubber: 橡胶 + Unpackage_Heavy_Oil_Residue: 导出重油残渣 + Polymer_Resin: 替代:聚合树脂 + Heavy_Oil_Residue: 替代:重油残渣 + Circuit_Board: 电路板 + Silicon_Circuit_Board: 替代:硅基电路板 + Caterium_Circuit_Board: 替代:钦金电路板 + Electrode_Circuit_Board: 替代:电极电路板 + Residual_Plastic: 聚合塑料 + Recycled_Plastic: 替代:再生塑料 + Fuel: 燃料 + Unpackage_Water: 导出水 + Aluminum_Scrap: 碎铝渣 + Electrode_Aluminum_Scrap: 替代:电解制铝 + Battery: 电池 + Non-Fissile_Uranium: 非裂变贫铀 + Fertile_Uranium: 替代:富铀 + Instant_Scrap: 替代:速成型碎铝渣 + Residual_Rubber: 聚合橡胶 + Recycled_Rubber: 替代:再生橡胶 + Residual_Fuel: 残渣燃料油 + Unpackage_Fuel: 导出燃油 + Diluted_Fuel: 替代:稀释燃油 + Unpackage_Oil: 导出原油 + High-Speed_Connector: 高速连接器 + Silicon_High-Speed_Connector: 替代:硅基高速连接器 + Empty_Canister: 空桶 + Unpackage_Liquid_Biofuel: 导出液态生物燃料 + Coated_Iron_Canister: 替代:镀层铁桶 + Unpackage_Alumina_Solution: 导出氧化铝溶液 + Steel_Canister: 替代:钢桶 + Unpackage_Sulfuric_Acid: 导出硫酸 + Unpackage_Turbofuel: 导出涡轮燃油 + Packaged_Water: 桶装水 + Packaged_Oil: 桶装原油 + Packaged_Fuel: 桶装燃油 + Diluted_Packaged_Fuel: 替代:桶装稀释燃油 + Packaged_Heavy_Oil_Residue: 桶装重油残渣 + Packaged_Liquid_Biofuel: 桶装液态生物燃料 + Liquid_Biofuel: 液态生物燃料 + Computer: 计算机 + Caterium_Computer: 替代:钦金计算机 + Crystal_Computer: 替代:晶体计算机 + Heavy_Modular_Frame: 重型模块化框架 + Heavy_Encased_Frame: 替代:重型封闭式框架 + Heavy_Flexible_Frame: 替代:重型柔韧框架 + Modular_Engine: 模块化引擎 + Adaptive_Control_Unit: 自适应控制单元 + Smokeless_Powder: 无烟火药 + Pulse_Nobelisk: 脉冲诺石 + Rifle_Ammo: 步枪弹药 + Alclad_Aluminum_Sheet: 复合铝板 + Iodine-Infused_Filter: 碘化过滤器 + Aluminum_Casing: 铝制外壳 + Alclad_Casing: 替代:复合铝外壳 + Cluster_Nobelisk: 集束诺氏雷筒 + Homing_Rifle_Ammo: 追踪步枪弹 + Sloppy_Alumina: 替代:氧化铝匀浆 + Bauxite_(Caterium): 铝土矿(钦金) + Bauxite_(Copper): 铝土矿(铜) + Packaged_Alumina_Solution: 桶装氧化铝溶液 + Aluminum_Ingot: 铝锭 + Pure_Aluminum_Ingot: 替代:高纯度铝锭 + Sulfuric_Acid: 硫酸 + Encased_Uranium_Cell: 封装铀棒 + Packaged_Sulfuric_Acid: 桶装硫酸 + Classic_Battery: 替代:传统电池 + Radio_Control_Unit: 无线电控制单元 + Radio_Control_System: 替代:无线电控制系统 + Radio_Connection_Unit: 替代:无线电连接单元 + Supercomputer: 超级计算机 + OC_Supercomputer: 替代:超频超级计算机 + Super-State_Computer: 替代:超状态计算机 + Assembly_Director_System: 组装编导系统 + Empty_Fluid_Tank: 空瓶 + Unpackage_Nitrogen_Gas: 导出氮气 + Unpackage_Nitric_Acid: 导出硝酸 + Unpackage_Rocket_Fuel: 导出火箭燃料 + Unpackage_Ionized_Fuel: 导出电离燃油 + Packaged_Nitrogen_Gas: 瓶装氮气 + Nitrogen_Gas_(Bauxite): 氮气(铝土矿) + Nitrogen_Gas_(Caterium): 氮气(钦金) + Heat_Sink: 散热器 + Heat_Exchanger: 替代:热交换器 + Cooling_System: 冷却系统 + Cooling_Device: 替代:冷却装置 + Fused_Modular_Frame: 焊接模块化框架 + Heat-Fused_Frame: 替代:热熔框架 + Nitric_Acid: 硝酸 + Infused_Uranium_Cell: 替代:混合型铀棒 + Uranium_Ore_(Bauxite): 铀矿石(铝土矿) + Electromagnetic_Control_Rod: 电磁控制杆 + Electromagnetic_Connection_Rod: 替代:电磁连接杆 + Uranium_Fuel_Rod: 铀燃料棒 + Uranium_Fuel_Unit: 替代:铀燃料单元 + Magnetic_Field_Generator: 磁场发生器 + Packaged_Nitric_Acid: 桶装硝酸 + Plutonium_Pellet: 钚丸 + Encased_Plutonium_Cell: 封装钚棒 + Instant_Plutonium_Cell: 替代:速成型钚棒 + Plutonium_Fuel_Rod: 钚燃料棒 + Plutonium_Fuel_Unit: 替代:钚燃料单元 + Turbo_Motor: 涡轮马达 + Turbo_Electric_Motor: 替代:涡轮电磁马达 + Turbo_Pressure_Motor: 替代:涡轮增压马达 + Copper_Powder: 铜粉 + Pressure_Conversion_Cube: 封压方块 + Nuclear_Pasta: 核意面 + Thermal_Propulsion_Rocket: 热能推进火箭 + Turbo_Blend_Fuel: 替代:混合涡轮燃油 + Turbofuel: 涡轮燃油 + Turbo_Heavy_Fuel: 替代:重质涡轮燃油 + Packaged_Turbofuel: 桶装涡轮燃油 + Ficsite_Ingot_(Iron): F金锭(铁) + Ficsite_Ingot_(Aluminum): F金锭(铝) + Ficsite_Ingot_(Caterium): F金锭(钦金) + Ficsite_Trigon: F金三角 + Diamonds: 钻石 + Oil-Based_Diamonds: 替代:油基钻石 + Pink_Diamonds: 替代:粉钻 + Cloudy_Diamonds: 替代:雾状钻石 + Turbo_Diamonds: 替代:涡轮钻石 + Petroleum_Diamonds: 替代:石油钻石 + Time_Crystal: 时间水晶 + Biochemical_Sculptor: 生化塑造器 + Dark_Matter_Residue: 暗物质残渣 + Superposition_Oscillator: 叠加态振荡器 + Neural-Quantum_Processor: 神经量子处理器 + AI_Expansion_Server: AI扩展伺服器 + Ficsonium_Fuel_Rod: 镄燃料棒 + Alien_Power_Matrix: 外星能量矩阵 + Dark_Matter_Crystal: 暗物质晶体 + Dark_Matter_Trap: 替代:暗物质捕获器 + Dark_Matter_Crystallization: 替代:晶体化暗物质 + Excited_Photonic_Matter: 激发态光子物质 + Explosive_Rebar: 爆炸铁棒弹 + Compacted_Coal: 替代:压缩煤 + Rocket_Fuel: 火箭燃料 + Ionized_Fuel: 电离燃油 + Dark-Ion_Fuel: 替代:暗离子燃料 + Nitro_Rocket_Fuel: 替代:硝基火箭燃料 + Packaged_Rocket_Fuel: 桶装火箭燃料 + Packaged_Ionized_Fuel: 桶装电离燃油 + Turbo_Rifle_Ammo: 涡轮步枪弹 + Turbo_Rifle_Ammo_2: 涡轮步枪弹 + Nuke_Nobelisk: 核子诺氏雷筒 + Ficsonium: 镄 + Singularity_Cell: 奇点电池 + Ballistic_Warp_Drive: 弹道跃迁引擎 diff --git a/src/types.ts b/src/types.ts index 4969382..6af6df1 100644 --- a/src/types.ts +++ b/src/types.ts @@ -18,7 +18,6 @@ export interface ModuleFactory { export interface Item { id: Id - name: string } export interface ItemQuantity { @@ -32,7 +31,6 @@ export interface RecipeItemQuantity extends ItemQuantity { export interface Recipe { id: Id - name: string inputs: RecipeItemQuantity[] outputs: RecipeItemQuantity[] producedIn: Id @@ -42,6 +40,5 @@ export interface Recipe { export interface Building { id: Id - name: string powerUsage: PowerUsage | 'variable' }