forked from FishyB/FactorioPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnology-sa.lua
More file actions
34 lines (33 loc) · 842 Bytes
/
technology-sa.lua
File metadata and controls
34 lines (33 loc) · 842 Bytes
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
-- Space age overrides
data.extend({
{
type = "technology",
name = "aluminium-productivity",
icons = util.technology_icon_constant_recipe_productivity("__factorioplus__/graphics/technology/aluminium-productivity.png"),
icon_size = 256,
effects =
{
{
type = "change-recipe-productivity",
recipe = "aluminium-plate",
change = 0.1
},
},
prerequisites = {"production-science-pack", "metallurgic-science-pack"},
unit =
{
count_formula = "1.5^L*1000",
ingredients =
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1},
{"production-science-pack", 1},
{"metallurgic-science-pack", 1},
},
time = 60
},
max_level = "infinite",
upgrade = true
},
})