-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.lua
31 lines (29 loc) · 875 Bytes
/
data.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
require "style"
data:extend(
{
{
type = "selection-tool",
name = "wall-builder",
icon = "__WallPlanner__/graphics/outpost-builder.png",
flags = {"goes-to-quickbar"},
selection_color = {r = 1.0, g = 0.55, b = 0.0, a = 0.2},
alt_selection_color = {r = 1.0, g = 0.2, b = 0.0, a = 0.2},
selection_mode = {"deconstruct"},
alt_selection_mode = {"deconstruct"},
selection_cursor_box_type = "not-allowed",
alt_selection_cursor_box_type = "not-allowed",
subgroup = "tool",
order = "c[automated-construction]-d[wall-builder]",
stack_size = 1
},
{
type = "recipe",
name = "wall-builder",
enabled = true,
energy_required = 0.1,
category = "crafting",
ingredients = {},
result = "wall-builder"
},
}
)