This commit is contained in:
2026-06-02 22:01:30 +09:00
parent 1840dad25a
commit 42a7e30851
2 changed files with 6 additions and 4 deletions
+3 -3
View File
@@ -29,7 +29,7 @@ end
-- CT C 1 BASE ENTITY,ITEM -- CT C 1 BASE ENTITY,ITEM
-- CT A 1 BASE RECIPE -- CT A 1 BASE RECIPE
if data.raw['linked-container']['linked-chest'] then if data.raw['linked-container'] and data.raw['linked-container']['linked-chest'] then
data.raw['item']['linked-chest'].subgroup = 'storage' data.raw['item']['linked-chest'].subgroup = 'storage'
data.raw['item']['linked-chest'].order = 'a[items]-d[linked-chest]' data.raw['item']['linked-chest'].order = 'a[items]-d[linked-chest]'
data.raw['item']['linked-chest'].stack_size = 50 data.raw['item']['linked-chest'].stack_size = 50
@@ -56,7 +56,7 @@ if data.raw['linked-container']['linked-chest'] then
end end
-- CT A 1 BASE ENTITY,ITEM,RECIPE -- CT A 1 BASE ENTITY,ITEM,RECIPE
if data.raw['radar']['radar'] then if data.raw['radar'] and data.raw['radar']['radar'] then
local item = table.deepcopy(data.raw['item']['radar']) local item = table.deepcopy(data.raw['item']['radar'])
item.name = 'super-radar' item.name = 'super-radar'
item.place_result = item.name item.place_result = item.name
@@ -92,7 +92,7 @@ if data.raw['radar']['radar'] then
end end
-- CT A 2 BASE ENTITY,ITEM,RECIPE -- CT A 2 BASE ENTITY,ITEM,RECIPE
if data.raw['electric-energy-interface']['electric-energy-interface'] then if data.raw['electric-energy-interface'] and data.raw['electric-energy-interface']['electric-energy-interface'] then
for _, v in pairs({'active', 'passive'}) do for _, v in pairs({'active', 'passive'}) do
local item = table.deepcopy(data.raw['item']['electric-energy-interface']) local item = table.deepcopy(data.raw['item']['electric-energy-interface'])
item.name = v .. '-energy-void' item.name = v .. '-energy-void'
+2
View File
@@ -12,7 +12,9 @@ local mod_tint = {
} }
-- MBE C 1 BASE FLUID -- MBE C 1 BASE FLUID
if data.raw['fluid'] and data.raw['fluid']['steam'] then
data.raw['fluid']['steam'].max_temperature = ((settings.startup['PHI-MB-ENERGY-POWER-TIER'].value > 1) and 5000) or data.raw['fluid']['steam'].max_temperature data.raw['fluid']['steam'].max_temperature = ((settings.startup['PHI-MB-ENERGY-POWER-TIER'].value > 1) and 5000) or data.raw['fluid']['steam'].max_temperature
end
-- MBE A 7 BASE RESEARCH -- MBE A 7 BASE RESEARCH
for i = 1, 7 do for i = 1, 7 do