This commit is contained in:
2026-04-28 23:09:41 +09:00
parent b45c0850e0
commit 69a6f69f3c
2 changed files with 13 additions and 5 deletions
+11 -3
View File
@@ -499,8 +499,10 @@ if data.raw.technology['turbo-transport-belt'] and data.raw['underground-belt']
end end
-- MIG C 1 BASE ENTITY -- MIG C 1 BASE ENTITY
data.raw['proxy-container']['proxy-container'].flags = {'not-blueprintable', 'hide-alt-info', 'not-deconstructable', 'not-flammable', 'not-on-map', 'placeable-off-grid', 'placeable-player', 'no-automated-item-insertion', 'no-automated-item-removal'} if data.raw['proxy-container'] and data.raw['proxy-container']['proxy-container'] then
data.raw['proxy-container']['proxy-container'].draw_inventory_content = false data.raw['proxy-container']['proxy-container'].flags = {'not-blueprintable', 'hide-alt-info', 'not-deconstructable', 'not-flammable', 'not-on-map', 'placeable-off-grid', 'placeable-player', 'no-automated-item-insertion', 'no-automated-item-removal'}
data.raw['proxy-container']['proxy-container'].draw_inventory_content = false
end
-- MIG C 12 BASE ENTITY -- MIG C 12 BASE ENTITY
-- MIG C 5 SPACE_AGE ENTITY -- MIG C 5 SPACE_AGE ENTITY
@@ -521,16 +523,22 @@ for _, v in pairs(data.raw['roboport-equipment']) do
v.charging_station_count_affected_by_quality = true v.charging_station_count_affected_by_quality = true
end end
if mods['space-age'] then -- MIG C 1 SPAGE_AGE ENTITY
if data.raw['thruster'] and data.raw['thruster']['thruster'] then
table.insert(data.raw['thruster']['thruster'].fuel_fluid_box.pipe_connections, {flow_direction = 'input-output', direction = defines.direction.west, position = {-1.5, 2}}) table.insert(data.raw['thruster']['thruster'].fuel_fluid_box.pipe_connections, {flow_direction = 'input-output', direction = defines.direction.west, position = {-1.5, 2}})
table.insert(data.raw['thruster']['thruster'].oxidizer_fluid_box.pipe_connections, {flow_direction = 'input-output', direction = defines.direction.east, position = {1.5, 2}}) table.insert(data.raw['thruster']['thruster'].oxidizer_fluid_box.pipe_connections, {flow_direction = 'input-output', direction = defines.direction.east, position = {1.5, 2}})
end
-- MIG C 1 SPAGE_AGE ENTITY
if data.raw['fusion-generator'] and data.raw['fusion-generator']['fusion-generator'] then
for _, fb in pairs({'input_fluid_box', 'output_fluid_box'}) do for _, fb in pairs({'input_fluid_box', 'output_fluid_box'}) do
for _, v in pairs(data.raw['fusion-generator']['fusion-generator'][fb].pipe_connections) do for _, v in pairs(data.raw['fusion-generator']['fusion-generator'][fb].pipe_connections) do
v.flow_direction = 'input-output' v.flow_direction = 'input-output'
end end
end end
end
if mods['space-age'] then
if data.raw['reactor']['heating-tower'] then if data.raw['reactor']['heating-tower'] then
local item = table.deepcopy(data.raw['item']['heating-tower']) local item = table.deepcopy(data.raw['item']['heating-tower'])
item.name = 'electric-heating-tower' item.name = 'electric-heating-tower'
+2 -2
View File
@@ -1,8 +1,8 @@
local param = require 'config' local param = require 'config'
-- MIGS A 1 BASE ENTITY,ITEM,RECIPE -- MIGS A 1 BASE ENTITY,ITEM,RECIPE
-- MIGS A 9 BASE RESEARCH_EFFECT -- MIGS A 9 BASE VIRTUAL_SIGNAL
-- MIGS A 15 SPACE_AGE RESEARCH_EFFECT -- MIGS A 15 SPACE_AGE VIRTUAL_SIGNAL
if data.raw['constant-combinator']['constant-combinator'] then if data.raw['constant-combinator']['constant-combinator'] then
local item = table.deepcopy(data.raw['item']['constant-combinator']) local item = table.deepcopy(data.raw['item']['constant-combinator'])
item.name = 'super-combinator' item.name = 'super-combinator'