This commit is contained in:
2026-06-05 14:27:23 +09:00
parent e77bbdb618
commit 40488c01d3
2 changed files with 31 additions and 33 deletions
+14 -14
View File
@@ -23,50 +23,50 @@ return {
name = 'steam-engine',
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 3)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
-- MBE A 2 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['nuclear-reactor'] = {
type = 'reactor',
name = 'nuclear-reactor',
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 5)
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 3)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
-- MBE A 2 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['heat-pipe'] = {
type = 'heat-pipe',
name = 'heat-pipe',
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 5)
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 3)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
-- MBE A 2 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['heat-exchanger'] = {
type = 'boiler',
name = 'heat-exchanger',
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 5)
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 3)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
-- MBE A 2 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['steam-turbine'] = {
type = 'generator',
name = 'steam-turbine',
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 5)
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 3)
},
-- MBE A 4 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
-- MBE A 2 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
['fusion-reactor'] = {
mod = 'space-age',
type = 'fusion-reactor',
name = 'fusion-reactor',
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 5)
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 3)
},
-- MBE A 4 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
-- MBE A 2 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
['fusion-generator'] = {
mod = 'space-age',
type = 'fusion-generator',
name = 'fusion-generator',
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 5)
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 3)
},
-- MBE A 4 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
-- MBE A 2 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
['heating-tower'] = {
mod = 'space-age',
type = 'reactor',
name = 'heating-tower',
tech = 'heating-tower',
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 5)
max = math.min(tonumber(settings.startup['PHI-MB-ENERGY'].value) or 1, 3)
},
}