-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
43 lines (40 loc) · 985 Bytes
/
Copy pathsettings.lua
File metadata and controls
43 lines (40 loc) · 985 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-- Reprocessor quality boost
local reprocessor_quality_setting = {
type = "string-setting",
name = "scrap-reprocessor-quality-setting",
setting_type = "startup",
order = "a",
default_value = "vanilla",
allowed_values = {
"none",
"vanilla",
"boosted"
}
}
-- Architectural scrap output
local architectural_scrap_setting = {
type = "string-setting",
name = "scrap-reprocessor-architectural-setting",
setting_type = "startup",
order = "b",
default_value = "default",
allowed_values = {
"default",
"vanilla",
"hybrid",
"boosted"
}
}
-- Mineral slurry doesn't produce iron ore
local mineral_slurry_setting = {
type = "bool-setting",
name = "scrap-reprocessor-mineral-slurry-setting",
setting_type = "startup",
order = "c",
default_value = false
}
data:extend({
reprocessor_quality_setting,
architectural_scrap_setting,
mineral_slurry_setting
})