forked from brevven/silicon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodules.lua
More file actions
25 lines (22 loc) · 723 Bytes
/
modules.lua
File metadata and controls
25 lines (22 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
local util = require("__bzsilicon__.data-util");
recipes = {"silica", "silicon"}
if util.me.more_intermediates() then
table.insert(recipes, "silicon-wafer")
table.insert(recipes, "solar-cell")
end
if mods["space-exploration"] then
table.insert(recipes, "silicon-smelting-vulcanite")
end
for i, recipe in pairs(recipes) do
if data.raw.recipe[recipe] then
for j, module in pairs(data.raw.module) do
if module.effect then
for effect_name, effect in pairs(module.effect) do
if effect_name == "productivity" and effect.bonus > 0 and module.limitation and #module.limitation > 0 then
table.insert(module.limitation, recipe)
end
end
end
end
end
end