-
Notifications
You must be signed in to change notification settings - Fork 8
/
data.lua
36 lines (36 loc) · 1.19 KB
/
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
32
33
34
35
36
data:extend(
{
{
type = "selection-tool",
name = "outpost-builder",
icon = "__OutpostPlanner__/graphics/outpost-builder.png",
icon_size = 32,
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 = {"any-entity"},
alt_selection_mode = {"any-entity"},
selection_cursor_box_type = "entity",
alt_selection_cursor_box_type = "entity",
subgroup = "tool",
order = "c[automated-construction]-d[outpost-builder]",
stack_size = 1
},
{
type = "recipe",
name = "outpost-builder",
enabled = true,
energy_required = 0.1,
category = "crafting",
ingredients = {},
result = "outpost-builder"
},
{
type = "sprite",
name = "miner-blueprint",
filename = "__OutpostPlanner__/graphics/miner-blueprint.png",
width = 32,
height = 32
}
-- TODO: Add shortcut
}
)