This commit is contained in:
2023-04-19 15:37:32 +09:00
parent 17fa9b840f
commit 5da64863e4
2 changed files with 12 additions and 7 deletions

View File

@@ -20,9 +20,12 @@ local items = {
}
}
if mods['space-exploration'] then
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
-- entity
@@ -123,12 +126,13 @@ local function ET(tier)
},
prerequisites = prereq,
unit = {
count = 100 * (2 * (tier - 1)),
count = 100,
-- count = 50 * tier,
ingredients = {
{'automation-science-pack', 1},
{'logistic-science-pack', 1}
{'automation-science-pack', 2},
{'logistic-science-pack', 2}
},
time = 60
time = 120
},
order = 'a-h-' .. alpha_order[tier + 1]
}})

View File

@@ -1,8 +1,8 @@
{
"name": "PHI-EN",
"version": "1.1.6",
"version": "1.1.7",
"factorio_version": "1.1",
"date": "2023-04-18",
"date": "2023-04-19",
"title": "Phidias Energy",
"author": "PHIDIAS0303",
"contributers": "",
@@ -10,6 +10,7 @@
"description": "Additional Compound Solars, Accumulator",
"dependencies": [
"base >= 1.1.0",
"? Krastorio2 >= 1.3.0",
"? space-exploration >= 0.6.0"
]
}