-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.lua
More file actions
44 lines (42 loc) · 1.22 KB
/
Copy pathdata.lua
File metadata and controls
44 lines (42 loc) · 1.22 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
data:extend({
{
type = "selection-tool",
name = "muro-wall-builder",
icon = "__muro__/graphics/muro.png",
icon_size = 32,
stack_size = 1,
subgroup = "tool",
order = "c[automated-construction]-d[muro-wall-builder]",
flags = {"hidden", "only-in-cursor"},
selection_color = {r = 0.2, g = 0.8, b = 0.2, a = 0.2},
alt_selection_color = {r = 0.2, g = 0.2, b = 0.8, a = 0.2},
selection_mode = {"any-tile"},
alt_selection_mode = {"any-tile"},
always_include_tiles = true,
selection_cursor_box_type = "entity",
alt_selection_cursor_box_type = "entity",
entity_filters = {},
entity_filter_mode = "whitelist",
show_in_library = true
},
{
type = "custom-input",
name = "muro-wall-builder",
key_sequence = "CONTROL + W",
},
{
type = "shortcut",
action = "lua",
name = "muro-wall-builder",
order = "c[automated-construction]-d[muro-wall-builder]",
icon = {
filename = "__muro__/graphics/muro_quickbar.png",
priority = "extra-high-no-scale",
size = 24,
scale = 1,
flags = {"icon"}
},
toggleable = false,
associated_control_input = "muro-wall-builder",
},
})