aboutsummaryrefslogtreecommitdiff
path: root/von-newmann-2/prototypes/item.lua
blob: 75bf10898223ee6c2256a035187e53d0d0779880 (plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
data:extend{
    {
        type = "item",
        name = "iron-active-provider-chest",
        icon = "__von-newmann-2__/graphics/items/iron-active-provider-chest.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "storage",
        order = "a[items]-b[iron-active-provider-chest]",
        place_result = "iron-active-provider-chest",
        stack_size = 50
    },
    {
        type = "item",
        name = "iron-buffer-chest",
        icon = "__von-newmann-2__/graphics/items/iron-buffer-chest.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "storage",
        order = "a[items]-b[iron-buffer-chest]",
        place_result = "iron-buffer-chest",
        stack_size = 50
    },
    {
        type = "item",
        name = "iron-passive-provider-chest",
        icon = "__von-newmann-2__/graphics/items/iron-passive-provider-chest.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "storage",
        order = "a[items]-b[iron-passive-provider-chest]",
        place_result = "iron-passive-provider-chest",
        stack_size = 50
    },
    {
        type = "item",
        name = "iron-requester-chest",
        icon = "__von-newmann-2__/graphics/items/iron-requester-chest.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "storage",
        order = "a[items]-b[iron-requester-chest]",
        place_result = "iron-requester-chest",
        stack_size = 50
    },
    {
        type = "item",
        name = "iron-storage-chest",
        icon = "__von-newmann-2__/graphics/items/iron-storage-chest.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "storage",
        order = "a[items]-b[iron-storage-chest]",
        place_result = "iron-storage-chest",
        stack_size = 50
    },
    {
        type = "item",
        name = "early-logistic-robot",
        icon = "__von-newmann-2__/graphics/items/logistic-robot.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "logistic-network",
        order = "a[robot]-b[early-logistic-robot]",
        place_result = "early-logistic-robot",
        stack_size = 50
    },
    {
        type = "item",
        name = "early-construction-robot",
        icon = "__von-newmann-2__/graphics/items/construction-robot.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "logistic-network",
        order = "a[robot]-b[early-construction-robot]",
        place_result = "early-construction-robot",
        stack_size = 50
    },
    {
        type = "item",
        name = "early-roboport",
        icon = "__von-newmann-2__/graphics/items/early-roboport.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "logistic-network",
        order = "c[signal]-a[roboport]",
        place_result = "early-roboport",
        stack_size = 10
    },
    {
        type = "item",
        name = "inventory-blocker",
        icon = "__von-newmann-2__/graphics/items/inventory-blocker.png",
        icon_size = 64,
        icon_mipmaps = 4,
        subgroup = "logistic-network",
        order = "a[robot]-b[early-construction-robot]",
        stack_size = 1
    },
}