aboutsummaryrefslogtreecommitdiff
path: root/prototypes/tech.lua
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2025-04-14 07:56:28 -0700
committerPaul Oliver <contact@pauloliver.dev>2025-04-15 01:44:25 +0200
commit9e163491a56ff4fb8eadc7dd22142c4ee539f24d (patch)
tree111c528719973bfe8cf5d00226e4b86c57834c03 /prototypes/tech.lua
parent5d77cdfd76be425181d218a2d5dd0e5e3a624304 (diff)
Adds README and build/install scripts (linux only)
Diffstat (limited to 'prototypes/tech.lua')
-rw-r--r--prototypes/tech.lua73
1 files changed, 0 insertions, 73 deletions
diff --git a/prototypes/tech.lua b/prototypes/tech.lua
deleted file mode 100644
index 47ce701..0000000
--- a/prototypes/tech.lua
+++ /dev/null
@@ -1,73 +0,0 @@
-data.raw.technology["logistic-system"].icon = "__von-newmann-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 = "__von-newmann-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"
- },
-}