aboutsummaryrefslogtreecommitdiff
path: root/prototypes/item.lua
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/item.lua')
-rw-r--r--prototypes/item.lua89
1 files changed, 89 insertions, 0 deletions
diff --git a/prototypes/item.lua b/prototypes/item.lua
new file mode 100644
index 0000000..70ca8ee
--- /dev/null
+++ b/prototypes/item.lua
@@ -0,0 +1,89 @@
+data:extend{
+ {
+ type = "item",
+ name = "iron-active-provider-chest",
+ icon = "__robot-start-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 = "__robot-start-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 = "__robot-start-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 = "__robot-start-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 = "__robot-start-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 = "__robot-start-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 = "__robot-start-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 = "inventory-blocker",
+ icon = "__robot-start-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
+ },
+} \ No newline at end of file