diff options
Diffstat (limited to 'prototypes/tech.lua')
-rw-r--r-- | prototypes/tech.lua | 73 |
1 files changed, 73 insertions, 0 deletions
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 |