nihilistzsche update to tech recipes
This commit is contained in:
parent
73deb4ccdc
commit
9e0b276e35
1 changed files with 13 additions and 2 deletions
|
@ -9,13 +9,24 @@ if mods["crafting-efficiency-2"] then
|
||||||
-- add remaining recipes with direct items to find the icons
|
-- add remaining recipes with direct items to find the icons
|
||||||
if data.raw.recipe[recipe] and (data.raw.item[recipe] or data.raw.fluid[recipe])
|
if data.raw.recipe[recipe] and (data.raw.item[recipe] or data.raw.fluid[recipe])
|
||||||
and not eff_data[recipe] and
|
and not eff_data[recipe] and
|
||||||
recipe ~= "phenol" and -- for some reason this doesn't work right now
|
|
||||||
(data.raw.recipe[recipe].main_product or util.get_result_count(recipe) == 1) then
|
(data.raw.recipe[recipe].main_product or util.get_result_count(recipe) == 1) then
|
||||||
|
local research_level = 6
|
||||||
|
if data.raw.recipe[recipe].enabled then
|
||||||
|
research_level = 1
|
||||||
|
else
|
||||||
|
for tech, tbl in pairs(data.raw.technology) do
|
||||||
|
for _, effect in pairs(tbl.effects or {}) do
|
||||||
|
if effect.type == "unlock-recipe" and effect.recipe == recipe then
|
||||||
|
research_level = math.min(#tbl.unit.ingredients, research_level)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
eff_data[recipe] = {
|
eff_data[recipe] = {
|
||||||
max = 15,
|
max = 15,
|
||||||
icon = data.raw.item[recipe] and data.raw.item[recipe].icon or data.raw.fluid[recipe].icon,
|
icon = data.raw.item[recipe] and data.raw.item[recipe].icon or data.raw.fluid[recipe].icon,
|
||||||
crafting = { efficiency = 10 },
|
crafting = { efficiency = 10 },
|
||||||
research = { level = 6 },
|
research = { level = research_level },
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue