This commit is contained in:
2026-06-05 23:31:44 +09:00
parent 60a7e25391
commit 2dee893300
2 changed files with 15 additions and 18 deletions
+12 -15
View File
@@ -576,11 +576,6 @@ local items = {
['lava'] = 'fluid', ['lava'] = 'fluid',
-- SPACE_AGE ITEM 0 -- SPACE_AGE ITEM 0
['bioflux'] = 'capsule', ['bioflux'] = 'capsule',
['jelly'] = 'capsule',
['jellynut'] = 'capsule',
['yumako'] = 'capsule',
['yumako-mash'] = 'capsule',
-- SPACE_AGE ITEM 5
['capture-robot-rocket'] = 'ammo', ['capture-robot-rocket'] = 'ammo',
['space-platform-starter-pack'] = 'space-platform-starter-pack', ['space-platform-starter-pack'] = 'space-platform-starter-pack',
-- SPACE_AGE MAP_GENERATION 0 -- SPACE_AGE MAP_GENERATION 0
@@ -857,8 +852,8 @@ local items = {
prerequisites = {'power-armor', 'military-4', 'speed-module-2', 'efficiency-module-2'} prerequisites = {'power-armor', 'military-4', 'speed-module-2', 'efficiency-module-2'}
}, },
['health'] = { ['health'] = {
prerequisites = {'utility-science-pack', 'space-science-pack'}, prerequisites = {'utility-science-pack', 'space-science-pack', 'agricultural-science-pack'},
unit_ingredients = {{'military-science-pack', 1}, {'chemical-science-pack', 1}, {'utility-science-pack', 1}, {'space-science-pack', 1}} unit_ingredients = {{'military-science-pack', 1}, {'chemical-science-pack', 1}, {'utility-science-pack', 1}, {'space-science-pack', 1}, {'agricultural-science-pack', 1}}
}, },
['processing-unit-productivity'] = { ['processing-unit-productivity'] = {
prerequisites = {'electromagnetic-science-pack'}, prerequisites = {'electromagnetic-science-pack'},
@@ -917,12 +912,12 @@ local items = {
}, },
['agriculture'] = { ['agriculture'] = {
prerequisites = {'chemical-science-pack'}, prerequisites = {'chemical-science-pack'},
effects = {{type = 'unlock-recipe', recipe = 'agricultural-tower'}}, effects = {{type = 'unlock-recipe', recipe = 'agricultural-tower'}, {type = 'unlock-recipe', recipe = 'yumako-processing'}, {type = 'unlock-recipe', recipe = 'jellynut-processing'}},
unit = {count = 400, time = 30, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}}} unit = {count = 1000, time = 60, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}}}
}, },
['tree-seeding'] = { ['tree-seeding'] = {
prerequisites = {'agricultural-science-pack'}, prerequisites = {'agricultural-science-pack'},
unit = {count = 400, time = 30, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'agricultural-science-pack', 1}}} unit = {count = 600, time = 45, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'agricultural-science-pack', 1}}}
}, },
['metallurgic-science-pack'] = { ['metallurgic-science-pack'] = {
prerequisites = {'foundry'}, prerequisites = {'foundry'},
@@ -945,11 +940,11 @@ local items = {
unit = {count = 300, time = 45, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}}}, unit = {count = 300, time = 45, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}}},
effects = {{type = 'unlock-recipe', recipe = 'agricultural-science-pack'}} effects = {{type = 'unlock-recipe', recipe = 'agricultural-science-pack'}}
}, },
--[[ ['fish-breeding'] = {
['yumako'] = true, prerequisites = {'agricultural-science-pack'},
['jellynut'] = true, unit = {count = 300, time = 45, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'agricultural-science-pack', 1}}},
['fish-breeding'] = true, effects = {{type = 'unlock-recipe', recipe = 'fish-breeding'}}
]] },
}, },
['technology'] = { ['technology'] = {
-- SPACE_AGE 0 -- SPACE_AGE 0
@@ -990,6 +985,8 @@ local items = {
['asteroid-reprocessing'] = true, ['asteroid-reprocessing'] = true,
-- SPACE_AGE 30 -- SPACE_AGE 30
['advanced-asteroid-processing'] = true, ['advanced-asteroid-processing'] = true,
['yumako'] = true,
['jellynut'] = true,
}, },
} }
+3 -3
View File
@@ -261,7 +261,7 @@ end
-- GM-VP H 1 QUALITY ENTITY -- GM-VP H 1 QUALITY ENTITY
-- GM-VP H 66 SPACE_AGE ENTITY -- GM-VP H 66 SPACE_AGE ENTITY
-- GM-VP H 8 SPACE_AGE FLUID -- GM-VP H 8 SPACE_AGE FLUID
-- GM-VP H 7 SPACE_AGE ITEM -- GM-VP H 3 SPACE_AGE ITEM
-- GM-VP H 21 SPACE_AGE MAP_GENERATION -- GM-VP H 21 SPACE_AGE MAP_GENERATION
-- GM-VP H 3 SPACE_AGE TILE -- GM-VP H 3 SPACE_AGE TILE
-- GM-VP H 1 SPACE_AGE TOOL -- GM-VP H 1 SPACE_AGE TOOL
@@ -345,8 +345,8 @@ if data.raw['lab'] then
end end
-- GM-VP C 26 BASE RESEARCH -- GM-VP C 26 BASE RESEARCH
-- GM-VP C 33 SPACE_AGE RESEARCH -- GM-VP C 34 SPACE_AGE RESEARCH
-- GM-VP H 31 SPACE_AGE RESEARCH -- GM-VP H 33 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
if items['technology_reform'][v.name] then if items['technology_reform'][v.name] then