mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2025-12-27 11:05:22 +09:00
757 lines
25 KiB
Lua
757 lines
25 KiB
Lua
local items = {
|
|
['general'] = {
|
|
['graphics_location'] = '__PHI-CL__/graphics/'
|
|
},
|
|
['research_modifier'] = {
|
|
--[[
|
|
['electric-turret'] = {
|
|
'energy-weapons-damage-1',
|
|
'energy-weapons-damage-2',
|
|
'energy-weapons-damage-3',
|
|
'energy-weapons-damage-4',
|
|
'energy-weapons-damage-5',
|
|
'energy-weapons-damage-6',
|
|
'energy-weapons-damage-7'
|
|
},
|
|
]]
|
|
['ammo-turret'] = {
|
|
'physical-projectile-damage-1',
|
|
'physical-projectile-damage-2',
|
|
'physical-projectile-damage-3',
|
|
'physical-projectile-damage-4',
|
|
'physical-projectile-damage-5',
|
|
'physical-projectile-damage-6',
|
|
'physical-projectile-damage-7'
|
|
},
|
|
['fluid-turret'] = {
|
|
'refined-flammables-1',
|
|
'refined-flammables-2',
|
|
'refined-flammables-3',
|
|
'refined-flammables-4',
|
|
'refined-flammables-5',
|
|
'refined-flammables-6',
|
|
'refined-flammables-7'
|
|
}
|
|
},
|
|
['tint'] = {
|
|
[2] = {r=140, g=142, b=200},
|
|
[3] = {r=242, g=161, b=26},
|
|
[4] = {r=255, g=254, b=42},
|
|
[5] = {r=54, g=228, b=255},
|
|
[6] = {r=253, g=0, b=97},
|
|
[7] = {r=0, g=209, b=102},
|
|
[8] = {r=233, g=63, b=233}
|
|
},
|
|
['item'] = {
|
|
['solar-panel'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'solar-panel',
|
|
name = 'solar-panel',
|
|
ref_name = 'solar-panel',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-SOLAR-TIER'].value
|
|
},
|
|
['accumulator'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'accumulator',
|
|
name = 'accumulator',
|
|
ref_name = 'accumulator',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-SOLAR-TIER'].value
|
|
},
|
|
['boiler'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'boiler',
|
|
name = 'boiler',
|
|
ref_name = 'boiler',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
},
|
|
['steam-engine'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'generator',
|
|
name = 'steam-engine',
|
|
ref_name = 'steam-engine',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
},
|
|
['nuclear-reactor'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'reactor',
|
|
name = 'nuclear-reactor',
|
|
ref_name = 'nuclear-reactor',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
},
|
|
['heat-pipe'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'heat-pipe',
|
|
name = 'heat-pipe',
|
|
ref_name = 'heat-pipe',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
},
|
|
['heat-exchanger'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'boiler',
|
|
name = 'heat-exchanger',
|
|
ref_name = 'heat-exchanger',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
},
|
|
['steam-turbine'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'generator',
|
|
name = 'steam-turbine',
|
|
ref_name = 'steam-turbine',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
},
|
|
['assembling-machine'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'assembling-machine',
|
|
name = 'assembling-machine',
|
|
ref_name = 'assembling-machine-3',
|
|
tech = 'automation-3',
|
|
min = 4,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value + 2
|
|
},
|
|
['electric-furnace'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'furnace',
|
|
name = 'electric-furnace',
|
|
ref_name = 'electric-furnace',
|
|
tech = 'advanced-material-processing-2',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
},
|
|
['oil-refinery'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'assembling-machine',
|
|
name = 'oil-refinery',
|
|
ref_name = 'oil-refinery',
|
|
tech = 'oil-processing',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
},
|
|
['chemical-plant'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'assembling-machine',
|
|
name = 'chemical-plant',
|
|
ref_name = 'chemical-plant',
|
|
tech = 'oil-processing',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
},
|
|
['centrifuge'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'assembling-machine',
|
|
name = 'centrifuge',
|
|
ref_name = 'centrifuge',
|
|
tech = 'uranium-processing',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
},
|
|
['lab'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'lab',
|
|
name = 'lab',
|
|
ref_name = 'lab',
|
|
tech = 'automation',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
},
|
|
['electric-mining-drill'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'mining-drill',
|
|
name = 'electric-mining-drill',
|
|
ref_name = 'electric-mining-drill',
|
|
tech = 'automation',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
},
|
|
['pumpjack'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'mining-drill',
|
|
name = 'pumpjack',
|
|
ref_name = 'pumpjack',
|
|
tech = 'automation',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
},
|
|
['laser-turret'] = {
|
|
enabled = settings.startup['PHI-WE'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'electric-turret',
|
|
name = 'laser-turret',
|
|
ref_name = 'laser-turret',
|
|
tech = 'laser-turret',
|
|
min = 2,
|
|
max = settings.startup['PHI-WE-TURRET-TIER'].value
|
|
},
|
|
['flamethrower-turret'] = {
|
|
enabled = settings.startup['PHI-WE'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'fluid-turret',
|
|
name = 'flamethrower-turret',
|
|
ref_name = 'flamethrower-turret',
|
|
tech = 'flamethrower',
|
|
min = 2,
|
|
max = settings.startup['PHI-WE-TURRET-TIER'].value
|
|
},
|
|
['gun-turret'] = {
|
|
enabled = settings.startup['PHI-WE'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'ammo-turret',
|
|
name = 'gun-turret',
|
|
ref_name = 'gun-turret',
|
|
tech = 'gun-turret',
|
|
min = 2,
|
|
max = settings.startup['PHI-WE-TURRET-TIER'].value
|
|
},
|
|
['radar'] = {
|
|
enabled = settings.startup['PHI-WE'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'radar',
|
|
name = 'radar',
|
|
ref_name = 'radar',
|
|
tech = 'automation',
|
|
min = 2,
|
|
max = settings.startup['PHI-WE-RADAR-TIER'].value
|
|
}
|
|
},
|
|
['equipment'] = {
|
|
['battery-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'battery-equipment',
|
|
name = 'battery',
|
|
ref_name = 'battery-mk2-equipment',
|
|
tech = 'battery-mk2-equipment',
|
|
min = 3,
|
|
max = settings.startup['PHI-EQ-POWER-TIER'].value
|
|
},
|
|
['discharge-defense-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'active-defense-equipment',
|
|
name = 'discharge-defense',
|
|
ref_name = 'discharge-defense-equipment',
|
|
tech = 'discharge-defense-equipment',
|
|
min = 2,
|
|
max = settings.startup['PHI-EQ-DEFENSE-TIER'].value
|
|
},
|
|
['energy-shield-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'energy-shield-equipment',
|
|
name = 'energy-shield',
|
|
ref_name = 'energy-shield-mk2-equipment',
|
|
tech = 'energy-shield-mk2-equipment',
|
|
min = 3,
|
|
max = settings.startup['PHI-EQ-DEFENSE-TIER'].value
|
|
},
|
|
['exoskeleton-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'movement-bonus-equipment',
|
|
name = 'exoskeleton',
|
|
ref_name = 'exoskeleton-equipment',
|
|
tech = 'exoskeleton-equipment',
|
|
min = 2,
|
|
max = settings.startup['PHI-EQ-UTILITY-TIER'].value
|
|
},
|
|
['fission-reactor-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'generator-equipment',
|
|
name = 'fission-reactor',
|
|
ref_name = 'fission-reactor-equipment',
|
|
tech = 'fission-reactor-equipment',
|
|
min = 2,
|
|
max = settings.startup['PHI-EQ-POWER-TIER'].value
|
|
},
|
|
['night-vision-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'night-vision-equipment',
|
|
name = 'night-vision',
|
|
ref_name = 'night-vision-equipment',
|
|
tech = 'night-vision-equipment',
|
|
min = 2,
|
|
max = settings.startup['PHI-EQ-UTILITY-TIER'].value
|
|
},
|
|
['personal-laser-defense-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'active-defense-equipment',
|
|
name = 'personal-laser-defense',
|
|
ref_name = 'personal-laser-defense-equipment',
|
|
tech = 'personal-laser-defense-equipment',
|
|
min = 2,
|
|
max = settings.startup['PHI-EQ-DEFENSE-TIER'].value
|
|
},
|
|
['personal-roboport-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'roboport-equipment',
|
|
name = 'personal-roboport',
|
|
ref_name = 'personal-roboport-mk2-equipment',
|
|
tech = 'personal-roboport-mk2-equipment',
|
|
min = 3,
|
|
max = settings.startup['PHI-EQ-TOOL-TIER'].value
|
|
},
|
|
['solar-panel-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'base',
|
|
type = 'solar-panel-equipment',
|
|
name = 'solar-panel',
|
|
ref_name = 'solar-panel-equipment',
|
|
tech = 'solar-panel-equipment',
|
|
min = 2,
|
|
max = settings.startup['PHI-EQ-POWER-TIER'].value,
|
|
base = 30,
|
|
graphics_name = 'solar-panel-equipment'
|
|
}
|
|
},
|
|
['space-age'] = {
|
|
['science'] = {
|
|
['agricultural-science-pack'] = true,
|
|
['cryogenic-science-pack'] = true,
|
|
['electromagnetic-science-pack'] = true,
|
|
['metallurgic-science-pack'] = true,
|
|
['promethium-science-pack'] = true,
|
|
['space-science-pack'] = true
|
|
},
|
|
['technology'] = {
|
|
'planet-discovery-vulcanus',
|
|
'planet-discovery-gleba',
|
|
'planet-discovery-fulgora',
|
|
'planet-discovery-aquilo',
|
|
'space-platform',
|
|
'space-platform-thruster',
|
|
'calcite-processing',
|
|
'tungsten-carbide',
|
|
'tungsten-steel',
|
|
'metallurgic-science-pack',
|
|
'yumako',
|
|
'jellynut',
|
|
'bioflux',
|
|
'artificial-soil',
|
|
'overgrowth-soil',
|
|
'bacteria-cultivation',
|
|
'bioflux-processing',
|
|
'agricultural-science-pack',
|
|
'tree-seeding',
|
|
'captivity',
|
|
'biter-egg-handling',
|
|
'carbon-fiber',
|
|
'fish-breeding',
|
|
'holmium-processing',
|
|
'electromagnetic-plant',
|
|
'electromagnetic-science-pack',
|
|
'lightning-collector',
|
|
'rail-support-foundations',
|
|
'lithium-processing',
|
|
'asteroid-reprocessing',
|
|
'advanced-asteroid-processing',
|
|
'quantum-processor',
|
|
'cryogenic-science-pack',
|
|
'captive-biter-spawner',
|
|
'promethium-science-pack',
|
|
'foundation',
|
|
'asteroid-productivity',
|
|
'scrap-recycling-productivity',
|
|
'recycling',
|
|
'heating-tower',
|
|
'agriculture',
|
|
'foundry',
|
|
'cryogenic-plant',
|
|
'biolab',
|
|
'biochamber',
|
|
},
|
|
['recipe'] = {
|
|
['agricultural-science-pack'] = true,
|
|
['cryogenic-science-pack'] = true,
|
|
['electromagnetic-science-pack'] = true,
|
|
['metallurgic-science-pack'] = true,
|
|
['promethium-science-pack'] = true,
|
|
['space-science-pack'] = true,
|
|
['burnt-spoilage'] = true,
|
|
['fish-breeding'] = true,
|
|
['nutrients-from-fish'] = true,
|
|
['nutrients-from-biter-egg'] = true,
|
|
['wood-processing'] = true,
|
|
['yumako-processing'] = true,
|
|
['jellynut-processing'] = true,
|
|
['copper-bacteria'] = true,
|
|
['copper-bacteria-cultivation'] = true,
|
|
['iron-bacteria'] = true,
|
|
['iron-bacteria-cultivation'] = true,
|
|
['nutrients-from-spoilage'] = true,
|
|
['nutrients-from-yumako-mash'] = true,
|
|
['nutrients-from-bioflux'] = true,
|
|
['pentapod-egg'] = true,
|
|
['rocket-fuel-from-jelly'] = true,
|
|
['bioflux'] = true,
|
|
['bioplastic'] = true,
|
|
['biosulfur'] = true,
|
|
['biolubricant'] = true,
|
|
['carbon-fiber'] = true,
|
|
['artificial-yumako-soil'] = true,
|
|
['overgrowth-yumako-soil'] = true,
|
|
['artificial-jellynut-soil'] = true,
|
|
['overgrowth-jellynut-soil'] = true,
|
|
['biochamber'] = true,
|
|
['capture-robot-rocket'] = true,
|
|
['captive-biter-spawner'] = true,
|
|
['biter-egg'] = true,
|
|
['spoilage-from-nutrients'] = true,
|
|
['crusher'] = true,
|
|
['cryogenic-plant'] = true,
|
|
['electromagnetic-plant'] = true,
|
|
['foundry'] = true,
|
|
['metallic-asteroid-crushing'] = true,
|
|
['carbonic-asteroid-crushing'] = true,
|
|
['oxide-asteroid-crushing'] = true,
|
|
['advanced-metallic-asteroid-crushing'] = true,
|
|
['advanced-carbonic-asteroid-crushing'] = true,
|
|
['advanced-oxide-asteroid-crushing'] = true,
|
|
['metallic-asteroid-reprocessing'] = true,
|
|
['carbonic-asteroid-reprocessing'] = true,
|
|
['oxide-asteroid-reprocessing'] = true,
|
|
['thruster'] = true,
|
|
['thruster-fuel'] = true,
|
|
['thruster-oxidizer'] = true,
|
|
['advanced-thruster-fuel'] = true,
|
|
['advanced-thruster-oxidizer'] = true,
|
|
['tungsten-carbide'] = true,
|
|
['tungsten-plate'] = true,
|
|
['carbon'] = true,
|
|
['coal-synthesis'] = true,
|
|
['agricultural-tower'] = true,
|
|
['biolab'] = true,
|
|
['spoilage-recycling'] = true,
|
|
['asteroid-collector'] = true,
|
|
['heating-tower'] = true,
|
|
['recycler'] = true,
|
|
['ammoniacal-solution-separation'] = true,
|
|
['lithium'] = true,
|
|
['lithium-plate'] = true,
|
|
['fluoroketone'] = true,
|
|
['ice-platform'] = true,
|
|
['solid-fuel-from-ammonia'] = true,
|
|
['ammonia-rocket-fuel'] = true,
|
|
['fluoroketone-cooling'] = true,
|
|
['quantum-processor'] = true,
|
|
['holmium-solution'] = true,
|
|
['holmium-plate'] = true,
|
|
['electrolyte'] = true,
|
|
['supercapacitor'] = true,
|
|
['superconductor'] = true,
|
|
['lightning-collector'] = true,
|
|
['lightning-rod'] = true,
|
|
['molten-iron-from-lava'] = true,
|
|
['molten-copper-from-lava'] = true,
|
|
['molten-iron'] = true,
|
|
['molten-copper'] = true,
|
|
['casting-iron'] = true,
|
|
['casting-steel'] = true,
|
|
['casting-copper'] = true,
|
|
['casting-iron-gear-wheel'] = true,
|
|
['casting-iron-stick'] = true,
|
|
['casting-pipe'] = true,
|
|
['casting-pipe-to-ground'] = true,
|
|
['casting-low-density-structure'] = true,
|
|
['concrete-from-molten-iron'] = true,
|
|
['casting-copper-cable'] = true,
|
|
['acid-neutralisation'] = true,
|
|
['simple-coal-liquefaction'] = true,
|
|
['scrap-recycling'] = true,
|
|
['foundation'] = true,
|
|
['foundation-o'] = true,
|
|
['space-platform-foundation'] = true,
|
|
['space-platform-starter-pack'] = true
|
|
}
|
|
}
|
|
}
|
|
|
|
if mods and mods['space-age'] then
|
|
items['item']['fusion-reactor'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'fusion-reactor',
|
|
name = 'fusion-reactor',
|
|
ref_name = 'fusion-reactor',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
}
|
|
|
|
items['item']['fusion-generator'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'fusion-generator',
|
|
name = 'fusion-generator',
|
|
ref_name = 'fusion-generator',
|
|
tech = 'compound-energy',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
}
|
|
|
|
items['item']['heating-tower'] = {
|
|
enabled = settings.startup['PHI-EN'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'reactor',
|
|
name = 'heating-tower',
|
|
ref_name = 'heating-tower',
|
|
tech = 'heating-tower',
|
|
min = 2,
|
|
max = settings.startup['PHI-EN-POWER-TIER'].value
|
|
}
|
|
|
|
items['item']['railgun-turret'] = {
|
|
enabled = settings.startup['PHI-WE'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'ammo-turret',
|
|
name = 'railgun-turret',
|
|
ref_name = 'railgun-turret',
|
|
tech = 'railgun',
|
|
min = 2,
|
|
max = settings.startup['PHI-WE-TURRET-TIER'].value
|
|
}
|
|
|
|
items['item']['rocket-turret'] = {
|
|
enabled = settings.startup['PHI-WE'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'ammo-turret',
|
|
name = 'rocket-turret',
|
|
ref_name = 'rocket-turret',
|
|
tech = 'rocket-turret',
|
|
min = 2,
|
|
max = settings.startup['PHI-WE-TURRET-TIER'].value
|
|
}
|
|
|
|
items['item']['tesla-turret'] = {
|
|
enabled = settings.startup['PHI-WE'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'electric-turret',
|
|
name = 'tesla-turret',
|
|
ref_name = 'tesla-turret',
|
|
tech = 'tesla-weapons',
|
|
min = 2,
|
|
max = settings.startup['PHI-WE-TURRET-TIER'].value
|
|
}
|
|
|
|
items['item']['foundry'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'assembling-machine',
|
|
name = 'foundry',
|
|
ref_name = 'foundry',
|
|
tech = 'foundry',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['item']['big-mining-drill'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'mining-drill',
|
|
name = 'big-mining-drill',
|
|
ref_name = 'big-mining-drill',
|
|
tech = 'big-mining-drill',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['item']['biochamber'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'assembling-machine',
|
|
name = 'biochamber',
|
|
ref_name = 'biochamber',
|
|
tech = 'biochamber',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['item']['crusher'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'assembling-machine',
|
|
name = 'crusher',
|
|
ref_name = 'crusher',
|
|
tech = 'space-platform',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['item']['biolab'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'lab',
|
|
name = 'biolab',
|
|
ref_name = 'biolab',
|
|
tech = 'biolab',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['item']['cryogenic-plant'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'assembling-machine',
|
|
name = 'cryogenic-plant',
|
|
ref_name = 'cryogenic-plant',
|
|
tech = 'cryogenic-plant',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['item']['electromagnetic-plant'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'assembling-machine',
|
|
name = 'electromagnetic-plant',
|
|
ref_name = 'electromagnetic-plant',
|
|
tech = 'electromagnetic-plant',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['item']['thruster'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'thruster',
|
|
name = 'thruster',
|
|
ref_name = 'thruster',
|
|
tech = 'space-platform-thruster',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['item']['agricultural-tower'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'agricultural-tower',
|
|
name = 'agricultural-tower',
|
|
ref_name = 'agricultural-tower',
|
|
tech = 'agriculture',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
|
|
items['equipment']['fusion-reactor-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'generator-equipment',
|
|
name = 'fusion-reactor',
|
|
ref_name = 'fusion-reactor-equipment',
|
|
tech = 'fusion-reactor-equipment',
|
|
min = 2,
|
|
max = settings.startup['PHI-EQ-POWER-TIER'].value
|
|
}
|
|
|
|
items['equipment']['toolbelt-equipment'] = {
|
|
enabled = settings.startup['PHI-EQ'].value,
|
|
stage = 1,
|
|
mod = 'space-age',
|
|
type = 'inventory-bonus-equipment',
|
|
name = 'toolbelt',
|
|
ref_name = 'toolbelt-equipment',
|
|
tech = 'toolbelt-equipment',
|
|
min = 2,
|
|
max = settings.startup['PHI-EQ-UTILITY-TIER'].value
|
|
}
|
|
|
|
items['equipment']['battery-equipment'].ref_name = 'battery-mk3-equipment'
|
|
items['equipment']['battery-equipment'].tech = 'battery-mk3-equipment'
|
|
items['equipment']['battery-equipment'].min = 4
|
|
end
|
|
|
|
if mods and mods['quality'] then
|
|
items['item']['recycler'] = {
|
|
enabled = settings.startup['PHI-MB'].value,
|
|
stage = 1,
|
|
mod = 'quality',
|
|
type = 'furnace',
|
|
name = 'recycler',
|
|
ref_name = 'recycler',
|
|
tech = 'recycling',
|
|
min = 2,
|
|
max = settings.startup['PHI-MB-MACHINE-TIER'].value
|
|
}
|
|
end
|
|
|
|
return items
|