-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdata.lua
More file actions
64 lines (62 loc) · 1.5 KB
/
data.lua
File metadata and controls
64 lines (62 loc) · 1.5 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
require("prototypes.items")
require("prototypes.entities")
require("prototypes.recipes")
local GRAPHICS_PATH = "__void-snatch__/graphics/"
data:extend({
{
type = "item-group",
name = "void-snatch",
icon_size = 128,
icon = GRAPHICS_PATH .. "void-snatch.png",
inventory_order = "v",
order = "v-a"
},
{
type = "item-subgroup",
name = "resource-duplication",
group = "void-snatch",
order = "a-a"
},
{
type = "item-subgroup",
name = "catalyst-duplication",
group = "void-snatch",
order = "b-a"
},
{
type = "item-subgroup",
name = "void-machines",
group = "void-snatch",
order = "c-a"
},
{
type = "item-subgroup",
name = "void-other",
group = "void-snatch",
order = "d-a"
},
{
type = "item-subgroup",
name = "void-chests",
group = "void-snatch",
order = "e-a"
},
{
type = "recipe-category",
name = "void-smelting"
},
{
type = "fuel-category",
name = "void-fuel"
},
{
type = "technology",
name = "vs-void-stone",
icon = GRAPHICS_PATH .. "void-snatch.png",
icon_size = 128,
effects = {{type = "give-item", item = "vs-void-stone", count = 1}},
prerequisites = {},
order = "f-b-b",
unit = {count = 100, ingredients = {{"automation-science-pack", 1}}, time = 10}
}
})