This commit is contained in:
2026-06-24 02:48:03 +09:00
parent 677fffd82a
commit c7210bc1ba
3 changed files with 33 additions and 4 deletions
+25 -1
View File
@@ -55,9 +55,11 @@ local items = {
'furnace', 'furnace',
'thruster', 'thruster',
'lab', 'lab',
-- 2X
'cargo-bay',
-- SPACE_AGE 15
-- 3X -- 3X
'plant', 'plant',
-- SPACE_AGE 15
}, },
['recipe_reform'] = { ['recipe_reform'] = {
-- BASE 0 -- BASE 0
@@ -99,6 +101,22 @@ local items = {
['transport-belt'] = { ['transport-belt'] = {
categories = {'crafting'}, categories = {'crafting'},
}, },
['fast-transport-belt'] = {
categories = {'crafting'},
},
['underground-belt'] = {
categories = {'crafting'},
},
['fast-underground-belt'] = {
categories = {'crafting'},
},
-- BASE 15
['splitter'] = {
categories = {'crafting'},
},
['fast-splitter'] = {
categories = {'crafting'},
},
-- SPACE_AGE 0 -- SPACE_AGE 0
['agricultural-tower'] = { ['agricultural-tower'] = {
ingredients = {{type = 'item', name = 'steel-plate', amount = 20}, {type = 'item', name = 'electronic-circuit', amount = 10}, {type = 'item', name = 'landfill', amount = 4}} ingredients = {{type = 'item', name = 'steel-plate', amount = 20}, {type = 'item', name = 'electronic-circuit', amount = 10}, {type = 'item', name = 'landfill', amount = 4}}
@@ -1080,6 +1098,10 @@ local items = {
prerequisites = {'quantum-processor'}, prerequisites = {'quantum-processor'},
unit = {count = 1000, time = 60, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'production-science-pack', 1}, {'utility-science-pack', 1}, {'agricultural-science-pack', 1}, {'electromagnetic-science-pack', 1}, {'metallurgic-science-pack', 1}, {'cryogenic-science-pack', 1}}}, unit = {count = 1000, time = 60, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'production-science-pack', 1}, {'utility-science-pack', 1}, {'agricultural-science-pack', 1}, {'electromagnetic-science-pack', 1}, {'metallurgic-science-pack', 1}, {'cryogenic-science-pack', 1}}},
}, },
['landing-pad-unloading-bay'] = {
prerequisites = {'rocket-silo'},
unit = {count = 800, time = 60, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'production-science-pack', 1}, {'utility-science-pack', 1}}},
},
}, },
['technology'] = { ['technology'] = {
-- SPACE_AGE 0 -- SPACE_AGE 0
@@ -1117,6 +1139,8 @@ local items = {
['tungsten-steel'] = true, ['tungsten-steel'] = true,
['holmium-processing'] = true, ['holmium-processing'] = true,
['lithium-processing'] = true, ['lithium-processing'] = true,
['stellar-discovery-solar-system-edge'] = true,
-- SPACE_AGE 30
}, },
} }
+3 -3
View File
@@ -8,7 +8,7 @@ mc.space_age()
-- GM-VP C 31 BASE ENTITY -- GM-VP C 31 BASE ENTITY
-- GM-VP C 6 ELEVATED_RAILS ENTITY -- GM-VP C 6 ELEVATED_RAILS ENTITY
-- GM-VP C 17 SPACE_AGE ENTITY -- GM-VP C 19 SPACE_AGE ENTITY
if items['entity_surface_conditions'] then if items['entity_surface_conditions'] then
for _, v in pairs(items['entity_surface_conditions']) do for _, v in pairs(items['entity_surface_conditions']) do
if data.raw[v] then if data.raw[v] then
@@ -394,7 +394,7 @@ if data.raw['lab'] then
end end
-- GM-VP C 26 BASE RESEARCH -- GM-VP C 26 BASE RESEARCH
-- GM-VP C 38 SPACE_AGE RESEARCH -- GM-VP C 39 SPACE_AGE RESEARCH
-- GM-VP H 29 SPACE_AGE RESEARCH -- GM-VP H 29 SPACE_AGE RESEARCH
if data.raw.technology and items['technology'] and items['technology_reform'] then if data.raw.technology and items['technology'] and items['technology_reform'] then
for _, v in pairs(data.raw.technology) do for _, v in pairs(data.raw.technology) do
@@ -452,7 +452,7 @@ for _, v in pairs(data.raw.item) do
end end
end end
-- GM-VP C 12 BASE RECIPE -- GM-VP C 17 BASE RECIPE
-- GM-VP C 61 SPACE_AGE RECIPE -- GM-VP C 61 SPACE_AGE RECIPE
-- GM-VP H 1 QUALITY RECIPE -- GM-VP H 1 QUALITY RECIPE
-- GM-VP H 54 SPACE_AGE RECIPE -- GM-VP H 54 SPACE_AGE RECIPE
+5
View File
@@ -4,6 +4,11 @@ if data.raw['cargo-bay'] and data.raw['cargo-bay']['cargo-bay'] then
data.raw['cargo-bay']['cargo-bay'].inventory_size_bonus = math.max(40, data.raw['cargo-bay']['cargo-bay'].inventory_size_bonus or 0) data.raw['cargo-bay']['cargo-bay'].inventory_size_bonus = math.max(40, data.raw['cargo-bay']['cargo-bay'].inventory_size_bonus or 0)
end end
-- GM C 1 SPACE_AGE ENTITY
if data.raw['cargo-bay'] and data.raw['cargo-bay']['landing-pad-unloading-bay'] then
data.raw['cargo-bay']['landing-pad-unloading-bay'].inventory_size_bonus = math.max(40, data.raw['cargo-bay']['landing-pad-unloading-bay'].inventory_size_bonus or 0)
end
-- GM C 1 BASE ENTITY -- GM C 1 BASE ENTITY
if data.raw['rocket-silo'] and data.raw['rocket-silo']['rocket-silo'] then if data.raw['rocket-silo'] and data.raw['rocket-silo']['rocket-silo'] then
data.raw['rocket-silo']['rocket-silo'].to_be_inserted_to_rocket_inventory_size = math.max(60, data.raw['rocket-silo']['rocket-silo'].to_be_inserted_to_rocket_inventory_size or 0) data.raw['rocket-silo']['rocket-silo'].to_be_inserted_to_rocket_inventory_size = math.max(60, data.raw['rocket-silo']['rocket-silo'].to_be_inserted_to_rocket_inventory_size or 0)