aboutsummaryrefslogtreecommitdiff
path: root/von-newmann-2/prototypes/tech.lua
blob: bf710026fc37c8c35b6df2d44e7cd76e0a7330aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
data.raw.technology["logistic-system"].icon = "__von-newmann-2__/graphics/technology/logistic-system.png"

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"
            },
            {
                type = "unlock-recipe",
                recipe = "early-roboport"
            }
        },
        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"
    },
}