-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.lua
82 lines (82 loc) · 1.82 KB
/
settings.lua
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
data:extend{
{
type = "bool-setting",
name = "pneumatic-no-belts",
setting_type = "startup",
default_value = true,
order = "pneumatic-1",
},
{
type = "bool-setting",
name = "pneumatic-no-wagons",
setting_type = "startup",
default_value = true,
order = "pneumatic-2",
},
{
type = "bool-setting",
name = "pneumatic-no-inserters",
setting_type = "startup",
default_value = false,
order = "pneumatic-3",
},
--[[
{
type = "bool-setting",
name = "pneumatic-thin-pipes",
setting_type = "startup",
default_value = false,
order = "pneumatic-4",
},
--]]
{
type = "int-setting",
name = "pneumatic-recipe-multiplier",
setting_type = "startup",
default_value = 10,
minimum_value = 1,
maximum_value = 50,
order = "pneumatic-6",
},
{
type = "int-setting",
name = "pneumatic-fluid-per-item",
setting_type = "startup",
default_value = 10,
minimum_value = 1,
maximum_value = 100,
order = "pneumatic-7",
},
{
type = "int-setting",
name = "pneumatic-inserter-stack-size",
setting_type = "runtime-global",
default_value = 10,
minimum_value = 1,
maximum_value = 40,
order = "pneumatic-7",
},
{
type = "string-setting",
name = "pneumatic-heavy-items",
setting_type = "startup",
default_value = "uranium-235,rocket-silo",
allow_blank = true,
order = "pneumatic-5",
},
{
type = "bool-setting",
name = "pneumatic-bottleneck-ignore",
setting_type = "startup",
default_value = true,
order = "pneumatic-0",
},
{
type = "int-setting",
name = "pneumatic-crafting-speed",
setting_type = "startup",
default_value = 3,
minimum_value = 1,
order = "pneumatic-01",
},
}