forked from trikop/bismuth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
42 lines (42 loc) · 1.1 KB
/
Copy pathsettings.lua
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
data:extend({
{
type = "string-setting",
name = "bismuth-reduce-pcb-solder",
setting_type = "startup",
default_value = "Default (reccomended)",
allowed_values = {"Default (reccomended)","Reduced"},
order = "aaa"
},
{
type = "bool-setting",
name = "bismuth-disable-bismuthinite-ore",
setting_type = "startup",
default_value = false,
order = "aab"
},
{
type = "bool-setting",
name = "bismuth-disable-bismuth-as-smelting-byproduct",
setting_type = "startup",
default_value = false,
order = "aac"
},
{
type = "int-setting",
name = "bismuth-contain-bismuth",
setting_type = "startup",
minimum_value = 1,
maximum_value = 10000,
default_value = 8129,
order = "aad"
},
{
type = "int-setting",
name = "bismuth-contain-sulfur",
setting_type = "startup",
minimum_value = 1,
maximum_value = 10000,
default_value = 1871,
order = "aae"
},
})