This commit is contained in:
2023-05-01 01:32:03 +09:00
parent c07318f77a
commit 339e95dbc3
6 changed files with 178 additions and 175 deletions

View File

@@ -1,32 +1,6 @@
local alpha_order = {'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm'}
local graphics_location = '__PHI-EN__/graphics/'
local items = {
['solar-panel'] = {
enabled = true,
type = 'solar-panel',
name = 'solar-panel',
min = 2,
max = 8,
base = 60
},
['accumulator'] = {
enabled = true,
type = 'accumulator',
name = 'accumulator',
min = 2,
max = 8,
base = 5
}
}
if mods['Krastorio2'] then
items['solar-panel'].base = 100
items['accumulator'].base = 10
elseif mods['space-exploration'] then
items['solar-panel'].base = 60
items['accumulator'].base = 5
end
local items = require 'config'
-- entity
local function EE(source, tier)