forked from Mongokatten/InfiniteResearchSpeed
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.lua
More file actions
35 lines (35 loc) · 678 Bytes
/
data.lua
File metadata and controls
35 lines (35 loc) · 678 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
35
data:extend(
{
{
type = "technology",
name = "research-speed-7",
icon_size = 256,
icon = "__base__/graphics/technology/research-speed.png",
effects =
{
{
type = "laboratory-speed",
modifier = 0.6
}
},
prerequisites = {"research-speed-6"},
unit =
{
count_formula = "8000*(L-6)",
ingredients =
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1},
{"production-science-pack", 1},
{"utility-science-pack", 1},
{"space-science-pack", 1}
},
time = 30
},
upgrade = true,
max_level = "infinite",
order = "c-m-d"
},
}
)