This commit is contained in:
2023-04-19 02:00:23 +09:00
parent 939938a1cd
commit 07a0deb471
7 changed files with 48 additions and 4 deletions

View File

@@ -58,6 +58,18 @@ local items = {
}
}
if mods['space-exploration'] then
items['se-space-assembling-machine'] = {
enabled = true,
type = 'assembling-machine',
name = 'se-space-assembling-machine',
ref_name = 'se-space-assembling-machine',
tech = 'automation',
min = 2,
max = 3
}
end
-- entity
local function EE(source, tier)
local item = table.deepcopy(data.raw[source.type][source.ref_name])
@@ -130,4 +142,4 @@ for _, v in pairs(items) do
ET(v, j)
end
end
end
end