From 7ca781e1d5bb34c601153c4acfc9cf61873b8b8a Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Mon, 14 Apr 2025 06:53:53 -0700 Subject: Initial (fork of robot-start-2 by Krypt0n_C0R3) --- prototypes/item.lua | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 prototypes/item.lua (limited to 'prototypes/item.lua') 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 -- cgit v1.2.1