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/tech.lua | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 prototypes/tech.lua (limited to 'prototypes/tech.lua') diff --git a/prototypes/tech.lua b/prototypes/tech.lua new file mode 100644 index 0000000..bc77fe5 --- /dev/null +++ b/prototypes/tech.lua @@ -0,0 +1,73 @@ +data.raw.technology["logistic-system"].icon = "__robot-start-2__/graphics/technology/logistic-system.png" +--[[data.raw.technology["logistic-robotics"].effects = +{ + { + type = "unlock-recipe", + recipe = "roboport" + }, + { + type = "unlock-recipe", + recipe = "logistic-chest-passive-provider" + }, + { + type = "unlock-recipe", + recipe = "logistic-chest-storage" + }, + { + type = "unlock-recipe", + recipe = "logistic-robot" + } +}]]-- + +data:extend{ + { + type = "technology", + name = "early-logistic", + icon_size = 256, icon_mipmaps = 4, + icon = "__robot-start-2__/graphics/technology/logistic-system-early.png", + effects = + { + { + type = "unlock-recipe", + recipe = "iron-active-provider-chest" + }, + { + type = "unlock-recipe", + recipe = "iron-buffer-chest" + }, + { + type = "unlock-recipe", + recipe = "iron-passive-provider-chest" + }, + { + type = "unlock-recipe", + recipe = "iron-requester-chest" + }, + { + type = "unlock-recipe", + recipe = "iron-storage-chest" + }, + { + type = "unlock-recipe", + recipe = "early-logistic-robot" + }, + { + type = "unlock-recipe", + recipe = "early-construction-robot" + }, + }, + prerequisites = {"logistic-science-pack"}, + unit = + { + count = 100*1, + ingredients = + { + {"automation-science-pack", 1}, + {"logistic-science-pack",5} + }, + time = 30 + }, + upgrade = false, + order = "e-l-a" + }, +} \ No newline at end of file -- cgit v1.2.1