forked from sparr/factorio-mod-combinatorgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.lua
29 lines (28 loc) · 752 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
data:extend({
{
type = "selection-tool",
name = "combinatorgraph-tool",
icon = "__combinatorgraph__/combinatorgraph.png",
icon_size = 32,
stack_size = 1,
subgroup = "terrain",
order = "d[combinatorgraph-tool]-a[plain]",
selection_color = {r = 0.2, g = 0.8, b = 0.2, a = 0.2},
alt_selection_color = {r = 0.2, g = 0.8, b = 0.2, a = 0.2},
selection_mode = {"blueprint"},
alt_selection_mode = {"blueprint"},
selection_cursor_box_type = "copy",
alt_selection_cursor_box_type = "copy"
},
{
type = "recipe",
name = "combinatorgraph-tool",
enabled = true,
energy_required = 0.5,
ingredients =
{
{"electronic-circuit", 1}
},
result = "combinatorgraph-tool"
}
})