-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdata.lua
More file actions
28 lines (23 loc) · 746 Bytes
/
data.lua
File metadata and controls
28 lines (23 loc) · 746 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
26
27
28
require("cables")
require("tin-ore")
require("tin-recipe")
require("tin-enriched") -- Enriched Al for Krastorio 2
require("tin-recipe-se") -- Space Exploration
require("compatibility.data.hot-metals")
local util = require("data-util");
util.prepare_recycling_helper()
-- Global to determine which alloys to provide separation (recycling) recipes for
alloys_to_separate = {
"solder",
"bronze-plate",
"zircaloy-4",
"lead-lithium-eutectic",
}
-- Global of which recipe categories should not be treated as separable
-- (Things like metallurgy, chemistry, smelting should all be treated as separable)
not_separable = {
"recycling", "recycling-or-hand-crafting",
"stacking", "crating",
}
-- Must be last
util.create_list()