-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata-final.lua
47 lines (47 loc) · 1.09 KB
/
data-final.lua
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
data.raw.recipe["automation-science-pack"].ingredients =
{
{ "copper-plate", 1 },
{ "iron-gear-wheel", 1 },
{ "human-1", 10 },
}
data.raw.recipe["logistic-science-pack"].ingredients =
{
{ "inserter", 1 },
{ "transport-belt", 1 },
{ "human-2", 10 },
}
data.raw.recipe["military-science-pack"].ingredients =
{
{ "piercing-rounds-magazine", 1 },
{ "grenade", 1 },
{ "stone-wall", 2 },
{ "human-2", 10 },
}
data.raw.recipe["chemical-science-pack"].ingredients =
{
{ "human-3", 10 },
{ "engine-unit", 2 },
{ "advanced-circuit", 3 },
{ "sulfur", 1 }
}
data.raw.recipe["production-science-pack"].ingredients =
{
{ "human-4", 10 },
{ "electric-furnace", 1 },
{ "productivity-module", 1 },
{ "rail", 30 }
}
data.raw.recipe["utility-science-pack"].ingredients =
{
{ "human-5", 10 },
{ "low-density-structure", 3 },
{ "processing-unit", 2 },
{ "flying-robot-frame", 1 }
}
data.raw.recipe["rocket-part"].ingredients =
{
{ "human-6", 100 },
{ "rocket-control-unit", 10 },
{ "low-density-structure", 10 },
{ "rocket-fuel", 10 }
}