This commit is contained in:
2026-06-06 14:08:35 +09:00
parent 5c1aabf9e8
commit 953acc9867
2 changed files with 25 additions and 19 deletions
+24 -18
View File
@@ -312,7 +312,21 @@ local items = {
ingredients = {{type = 'item', name = 'raw-fish', amount = 8}, {type = 'item', name = 'nutrients', amount = 80}, {type = 'fluid', name = 'water', amount = 1000, fluidbox_multiplier = 10, ignored_by_stats = 1000}}, ingredients = {{type = 'item', name = 'raw-fish', amount = 8}, {type = 'item', name = 'nutrients', amount = 80}, {type = 'fluid', name = 'water', amount = 1000, fluidbox_multiplier = 10, ignored_by_stats = 1000}},
results = {{type = 'item', name = 'raw-fish', amount = 12}, {type = 'fluid', name = 'water', amount = 1000, fluidbox_multiplier = 10, ignored_by_stats = 1000, ignored_by_productivity = 1000}} results = {{type = 'item', name = 'raw-fish', amount = 12}, {type = 'fluid', name = 'water', amount = 1000, fluidbox_multiplier = 10, ignored_by_stats = 1000, ignored_by_productivity = 1000}}
}, },
-- ['biolubricant'] = true, ['biolubricant'] = {
energy_required = 10,
allow_productivity = true,
ingredients = {{type = 'item', name = 'jelly', amount = 10}, {type = 'fluid', name = 'water', amount = 40, fluidbox_multiplier = 10}},
results = {{type = 'fluid', name = 'lubricant', amount = 40, fluidbox_multiplier = 10}}
},
--[[
['bioflux'] = true,
['bioplastic'] = true,
['biosulfur'] = true,
['carbon'] = true,
['carbon-fiber'] = true,
['nutrients-from-bioflux'] = true,
['rocket-fuel-from-jelly'] = true,
]]
}, },
['recipe'] = { ['recipe'] = {
-- QUALITY 0 -- QUALITY 0
@@ -331,16 +345,16 @@ local items = {
['iron-bacteria-cultivation'] = true, ['iron-bacteria-cultivation'] = true,
-- SPACE_AGE 10 -- SPACE_AGE 10
['nutrients-from-spoilage'] = true, ['nutrients-from-spoilage'] = true,
['nutrients-from-bioflux'] = true, ['spoilage-from-nutrients'] = true,
['pentapod-egg'] = true,
['rocket-fuel-from-jelly'] = true,
['casting-low-density-structure'] = true, ['casting-low-density-structure'] = true,
['space-platform-foundation'] = true,
['space-platform-starter-pack'] = true,
-- SPACE_AGE 15 -- SPACE_AGE 15
['bioflux'] = true, ['advanced-carbonic-asteroid-crushing'] = true,
['bioplastic'] = true, ['advanced-oxide-asteroid-crushing'] = true,
['biosulfur'] = true, ['metallic-asteroid-reprocessing'] = true,
['carbon'] = true, ['carbonic-asteroid-reprocessing'] = true,
['carbon-fiber'] = true, ['oxide-asteroid-reprocessing'] = true,
-- SPACE_AGE 20 -- SPACE_AGE 20
['artificial-yumako-soil'] = true, ['artificial-yumako-soil'] = true,
['overgrowth-yumako-soil'] = true, ['overgrowth-yumako-soil'] = true,
@@ -351,7 +365,7 @@ local items = {
['captive-biter-spawner'] = true, ['captive-biter-spawner'] = true,
['capture-robot-rocket'] = true, ['capture-robot-rocket'] = true,
['biter-egg'] = true, ['biter-egg'] = true,
['spoilage-from-nutrients'] = true, ['pentapod-egg'] = true,
['tungsten-carbide'] = true, ['tungsten-carbide'] = true,
-- SPACE_AGE 30 -- SPACE_AGE 30
['tungsten-plate'] = true, ['tungsten-plate'] = true,
@@ -390,14 +404,6 @@ local items = {
['oxide-asteroid-crushing'] = true, ['oxide-asteroid-crushing'] = true,
['advanced-metallic-asteroid-crushing'] = true, ['advanced-metallic-asteroid-crushing'] = true,
-- SPACE_AGE 60 -- SPACE_AGE 60
['advanced-carbonic-asteroid-crushing'] = true,
['advanced-oxide-asteroid-crushing'] = true,
['metallic-asteroid-reprocessing'] = true,
['carbonic-asteroid-reprocessing'] = true,
['oxide-asteroid-reprocessing'] = true,
-- SPACE_AGE 65
['space-platform-foundation'] = true,
['space-platform-starter-pack'] = true,
['crusher'] = true, ['crusher'] = true,
}, },
['item'] = { ['item'] = {
+1 -1
View File
@@ -423,7 +423,7 @@ end
-- GM-VP C 12 BASE RECIPE -- GM-VP C 12 BASE RECIPE
-- GM-VP C 46 SPACE_AGE RECIPE -- GM-VP C 46 SPACE_AGE RECIPE
-- GM-VP H 1 QUALITY RECIPE -- GM-VP H 1 QUALITY RECIPE
-- GM-VP H 68 SPACE_AGE RECIPE -- GM-VP H 61 SPACE_AGE RECIPE
for _, v in pairs(data.raw.recipe) do for _, v in pairs(data.raw.recipe) do
v.surface_conditions = nil v.surface_conditions = nil
v.maximum_productivity = nil v.maximum_productivity = nil