-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.lua
More file actions
39 lines (39 loc) · 1.21 KB
/
data.lua
File metadata and controls
39 lines (39 loc) · 1.21 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
data:extend(
{
{
type = "selection-tool",
name = "chunk-eraser",
icon = "__DeleteChunks__/graphics/chunk-eraser.png",
icon_size = 64,
flags = { "not-stackable", "spawnable" },
hidden = true,
subgroup = "tool",
order = "c[automated-construction]-b[deconstruction-planner]",
stack_size = 1,
select =
{
border_color = { r = 0, g = 1, b = 0 },
mode = { "nothing" },
cursor_box_type = "pair"
},
alt_select =
{
border_color = { r = 0, g = 0, b = 1 },
mode = { "nothing" },
cursor_box_type = "pair"
},
},
{
type = "shortcut",
name = "chunk-eraser",
order = "o[chunk-eraser]",
action = "spawn-item",
item_to_spawn = "chunk-eraser",
toggleable = true,
icon = "__DeleteChunks__/graphics/chunk-eraser.png",
icon_size = 64,
small_icon = "__DeleteChunks__/graphics/chunk-eraser.png",
small_icon_size = 64,
}
}
)