Files
factorio-mod-PHI-CL/PHI-CL/data/b/mbe-c.lua
2026-03-19 20:06:09 +09:00

73 lines
2.5 KiB
Lua

return {
-- MBE A 7 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['solar-panel'] = {
type = 'solar-panel',
name = 'solar-panel',
max = settings.startup['PHI-MB-ENERGY-POWER-TIER'].value
},
-- MBE A 7 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['accumulator'] = {
type = 'accumulator',
name = 'accumulator',
max = settings.startup['PHI-MB-ENERGY-POWER-TIER'].value
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['boiler'] = {
type = 'boiler',
name = 'boiler',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['steam-engine'] = {
type = 'generator',
name = 'steam-engine',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['nuclear-reactor'] = {
type = 'reactor',
name = 'nuclear-reactor',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['heat-pipe'] = {
type = 'heat-pipe',
name = 'heat-pipe',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['heat-exchanger'] = {
type = 'boiler',
name = 'heat-exchanger',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
-- MBE A 4 BASE ENTITY,RECIPE,RESEARCH_EFFECT
['steam-turbine'] = {
type = 'generator',
name = 'steam-turbine',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
-- MBE A 4 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
['fusion-reactor'] = {
mod = 'space-age',
type = 'fusion-reactor',
name = 'fusion-reactor',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
-- MBE A 4 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
['fusion-generator'] = {
mod = 'space-age',
type = 'fusion-generator',
name = 'fusion-generator',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
-- MBE A 4 SPACE_AGE ENTITY,RECIPE,RESEARCH_EFFECT
['heating-tower'] = {
mod = 'space-age',
type = 'reactor',
name = 'heating-tower',
tech = 'heating-tower',
max = math.min(settings.startup['PHI-MB-ENERGY-POWER-TIER'].value, 5)
},
}