-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconst.lua
More file actions
75 lines (72 loc) · 1.36 KB
/
const.lua
File metadata and controls
75 lines (72 loc) · 1.36 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
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
---@class Squeakthrough.const
local const = {}
const.groups = {
chests = {
"container",
"infinity-container",
"linked-container",
"logistic-container",
},
circuits = {
"arithmetic-combinator",
"constant-combinator",
"decider-combinator",
"lamp",
"power-switch",
"programmable-speaker",
"selector-combinator",
},
drills = {
"mining-drill",
},
machines = {
"assembling-machine",
"furnace",
"lab",
"rocket-silo",
},
pipes = {
"heat-interface",
"heat-pipe",
"infinity-pipe",
"offshore-pump",
"pipe",
"pipe-to-ground",
"pump",
"storage-tank",
},
solar = {
"accumulator",
"electric-energy-interface",
"solar-panel",
},
steam = {
"boiler",
"burner-generator",
"generator",
"reactor",
},
trees = {
"tree",
},
turrets = {
"artillery-turret",
"ammo-turret",
"electric-turret",
"fluid-turret",
},
misc = {
"beacon",
"electric-pole",
"inserter",
"radar",
"roboport",
"train-stop",
}
}
const.overrides = {
["pipe"] = 0.1,
["pipe-to-ground"] = 0.1,
["tree"] = 0.2,
}
return const