-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathlead-matter.lua
More file actions
69 lines (65 loc) · 1.28 KB
/
lead-matter.lua
File metadata and controls
69 lines (65 loc) · 1.28 KB
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
59
60
61
62
63
64
65
66
67
68
69
-- Matter recipes for Krastorio2
local util = require("data-util");
if util.k2() then
data:extend(
{
{
type = "technology",
name = "lead-matter-processing",
icons =
{
{
icon = util.k2assets().."/technologies/matter-stone.png",
icon_size = 256,
},
{
icon = "__bzlead__/graphics/icons/lead-ore.png",
icon_size = 64, icon_mipmaps = 3,
scale = 1.25,
}
},
effects = {},
prerequisites = {"kr-matter-processing"},
unit =
{
count = 350,
ingredients =
{
{"production-science-pack", 1},
{"utility-science-pack", 1},
{"kr-matter-tech-card", 1}
},
time = 45
}
},
})
util.k2matter({
k2matter = {
material = {
name = "lead-ore",
type = "item",
amount = 10,
},
matter_count = 5,
energy_required = 1,
needs_stabilizer = false,
allow_productivity = true,
unlocked_by = "lead-matter-processing"
}
})
util.k2matter({
k2matter = {
material = {
name = "lead-plate",
type = "item",
amount = 10,
},
matter_count = 7.5,
energy_required = 2,
needs_stabilizer = true,
allow_productivity = true,
only_deconversion = true,
unlocked_by = "lead-matter-processing"
}
})
end