-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
78 lines (66 loc) · 1.18 KB
/
Copy pathconfig.lua
File metadata and controls
78 lines (66 loc) · 1.18 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
76
77
78
regroup = regroup or {}
regroup.config = {}
regroup.config.DEBUG_MODE = true
regroup.config.active_mods = {
["vanilla"] = "vanilla",
["5dim"] = {
"5dim_core", "5dim_transport",
"5dim_resources", "5dim_ores",
"5dim_logistic", "5dim_automatization",
"5dim_mining", "5dim_battlefield",
"5dim_module", "5dim_energy",
"5dim_vehicle", "5dim_decoration",
"5dim_fixes"
},
["bob"] = {
"boblibrary", "bobassembly",
"bobenemies", "bobmining",
"bobores", "bobpower",
"bobtechsave", "bobelectronics",
"boblogistics", "bobmodules",
"bobplates", "bobtech",
"bobwarfare", "bobconfig"
},
["more_floors"] = "more_floors",
}
regroup.config.mod_order = {
"vanilla",
"5dim",
"bob",
"more_floors"
}
--internal settings beware of bear traps!
regroup.config.group_list = {
"transport",
"energy",
"machine",
"resource",
"vehicle",
"defense",
"drone",
"module",
"armor",
"gun",
"floor",
"alien"
}
regroup.config.item_types = {
"fluid",
"gun",
"ammo",
"armor",
"tool",
"module",
"capsule",
"rail-planner",
"mining-tool",
"repair-tool",
"blueprint-book",
"blueprint",
"deconstruction-item",
"virtual-signal",
"selection-tool",
"market",
"combat-robot",
"item"
}