This commit is contained in:
2025-03-31 23:33:37 +09:00
parent 67bc1af954
commit 7e1ee12df9
2 changed files with 17 additions and 1 deletions

View File

@@ -358,6 +358,17 @@ local items = {
}, },
['space-age'] = { ['space-age'] = {
['PHI-VP-MAIN'] = { ['PHI-VP-MAIN'] = {
['autoplace_control'] = {
['vulcanus_coal'] = true,
['tungsten_ore'] = true,
['calcite'] = true,
['sulfuric_acid_geyser'] = true,
['gleba_stone'] = true,
['scrap'] = true,
['aquilo_crude_oil'] = true,
['fluorine_vent'] = true,
['lithium_brine'] = true,
},
['technology_reform'] = { ['technology_reform'] = {
['stack-inserter'] = { ['stack-inserter'] = {
['prerequisites'] = {'bulk-inserter', 'chemical-science-pack', 'processing-unit'}, ['prerequisites'] = {'bulk-inserter', 'chemical-science-pack', 'processing-unit'},

View File

@@ -881,6 +881,11 @@ if settings.startup['PHI-VP'].value then
data.raw.technology['automation-productivity'].icons[1].icon = '__base__/graphics/technology/automation-2.png' data.raw.technology['automation-productivity'].icons[1].icon = '__base__/graphics/technology/automation-2.png'
data.raw.technology['automation-productivity'].localised_name = {'phi-cl.combine', {'technology-name.automation'}, ''} data.raw.technology['automation-productivity'].localised_name = {'phi-cl.combine', {'technology-name.automation'}, ''}
for k, v in pairs(items['space-age']['PHI-VP-MAIN']['autoplace_control']) do
data.raw['autoplace-control'][k].hidden = v
data.raw['autoplace-control'][k].hidden_in_factoriopedia = v
end
for _, v in pairs({'coal', 'stone', 'iron-ore', 'copper-ore', 'uranium-ore'}) do for _, v in pairs({'coal', 'stone', 'iron-ore', 'copper-ore', 'uranium-ore'}) do
data.raw.item[v].stack_size = math.max(data.raw.item[v].stack_size, 100) data.raw.item[v].stack_size = math.max(data.raw.item[v].stack_size, 100)
end end
@@ -1162,7 +1167,6 @@ if settings.startup['PHI-VP'].value then
data.raw['inserter'][v].grab_less_to_match_belt_stack = true data.raw['inserter'][v].grab_less_to_match_belt_stack = true
data.raw['inserter'][v].enter_drop_mode_if_held_stack_spoiled = true data.raw['inserter'][v].enter_drop_mode_if_held_stack_spoiled = true
data.raw['inserter'][v].allow_custom_vectors = true data.raw['inserter'][v].allow_custom_vectors = true
-- data.raw['inserter'][v].extension_speed = data.raw['inserter'][v].extension_speed * 2
end end
for _, v in pairs({'wooden-chest', 'iron-chest', 'steel-chest'}) do for _, v in pairs({'wooden-chest', 'iron-chest', 'steel-chest'}) do
@@ -1703,6 +1707,7 @@ if settings.startup['PHI-CT'].value then
order = 'zz', order = 'zz',
basic_settings = { basic_settings = {
autoplace_controls = {}, autoplace_controls = {},
autoplace_settings = {},
cliff_settings = { cliff_settings = {
name = 'none', name = 'none',
cliff_elevation_interval = 100, cliff_elevation_interval = 100,