This commit is contained in:
2026-05-08 22:25:16 +09:00
parent d9da2d433a
commit 6a2c49083e
2 changed files with 13 additions and 2 deletions
+10 -1
View File
@@ -633,42 +633,51 @@ local items = {
['crusher'] = true ['crusher'] = true
}, },
['item'] = { ['item'] = {
-- QUALITY 0
['recycler'] = true,
-- SPACE_AGE 0
['artificial-yumako-soil'] = true, ['artificial-yumako-soil'] = true,
['overgrowth-yumako-soil'] = true, ['overgrowth-yumako-soil'] = true,
['artificial-jellynut-soil'] = true, ['artificial-jellynut-soil'] = true,
['overgrowth-jellynut-soil'] = true, ['overgrowth-jellynut-soil'] = true,
['recycler'] = true,
['ice-platform'] = true, ['ice-platform'] = true,
-- SPACE_AGE 5
['foundation'] = true, ['foundation'] = true,
['biochamber'] = true, ['biochamber'] = true,
['captive-biter-spawner'] = true, ['captive-biter-spawner'] = true,
['tungsten-ore'] = true, ['tungsten-ore'] = true,
['tungsten-carbide'] = true, ['tungsten-carbide'] = true,
-- SPACE_AGE 10
['tungsten-plate'] = true, ['tungsten-plate'] = true,
['scrap'] = true, ['scrap'] = true,
['holmium-ore'] = true, ['holmium-ore'] = true,
['holmium-plate'] = true, ['holmium-plate'] = true,
['superconductor'] = true, ['superconductor'] = true,
-- SPACE_AGE 15
['supercapacitor'] = true, ['supercapacitor'] = true,
['yumako-seed'] = true, ['yumako-seed'] = true,
['jellynut-seed'] = true, ['jellynut-seed'] = true,
['iron-bacteria'] = true, ['iron-bacteria'] = true,
['copper-bacteria'] = true, ['copper-bacteria'] = true,
-- SPACE_AGE 20
['spoilage'] = true, ['spoilage'] = true,
['nutrients'] = true, ['nutrients'] = true,
['carbon-fiber'] = true, ['carbon-fiber'] = true,
['biter-egg'] = true, ['biter-egg'] = true,
['pentapod-egg'] = true, ['pentapod-egg'] = true,
-- SPACE_AGE 25
['lithium'] = true, ['lithium'] = true,
['lithium-plate'] = true, ['lithium-plate'] = true,
['quantum-processor'] = true, ['quantum-processor'] = true,
['ice'] = true, ['ice'] = true,
['carbon'] = true, ['carbon'] = true,
-- SPACE_AGE 30
['calcite'] = true, ['calcite'] = true,
['space-platform-foundation'] = true, ['space-platform-foundation'] = true,
['asteroid-collector'] = true, ['asteroid-collector'] = true,
['crusher'] = true, ['crusher'] = true,
['thruster'] = true, ['thruster'] = true,
-- SPACE_AGE 35
['space-platform-hub'] = true, ['space-platform-hub'] = true,
}, },
['hidden'] = { ['hidden'] = {
+3 -1
View File
@@ -333,8 +333,8 @@ if not items['recipe'] then
items['recipe'] = {} items['recipe'] = {}
end end
-- GM-VP H 92 SPACE_AGE RECIPE
-- GM-VP H 1 QUALITY RECIPE -- GM-VP H 1 QUALITY RECIPE
-- GM-VP H 92 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
@@ -350,6 +350,8 @@ if items['item'] then
items['item'] = {} items['item'] = {}
end end
-- GM-VP H 1 QUALITY ITEM
-- GM-VP H 36 SPACE_AGE ITEM
for _, v in pairs(data.raw.item) do for _, v in pairs(data.raw.item) do
v.auto_recycle = false v.auto_recycle = false