-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcrafts.lua
153 lines (136 loc) · 4.45 KB
/
crafts.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
minetest.register_craft({
output = '"chemistry:test_tube" 16',
recipe = {
{'default:glass', '', ''},
{'default:glass', '', ''},
{'default:glass', '', ''},
}
})
minetest.register_craft({
type = "shapeless",
output = "chemistry:marble_coal_dust 2",
recipe = {
"chemistry:marble_dust","chemistry:marble_dust",
"technic:coal_dust"
}
})
minetest.register_craft({
type = "shapeless",
output = "chemistry:test_tube_water 8",
recipe = {
"bucket:bucket_water","chemistry:test_tube","chemistry:test_tube",
"chemistry:test_tube","chemistry:test_tube","chemistry:test_tube",
"chemistry:test_tube","chemistry:test_tube","chemistry:test_tube"
}, replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
})
minetest.register_craft({
type = "shapeless",
output = "chemistry:calcium_carbide 3",
recipe = {
"chemistry:calcium","chemistry:carbon",
"chemistry:carbon"
}
})
minetest.register_craft({
type = "shapeless",
output = "chemistry:acetylene 1",
recipe = {
"chemistry:calcium_carbide","chemistry:test_tube_distilated_water",
"chemistry:test_tube_distilated_water"
},
replacements = {{"chemistry:calcium_carbide", "chemistry:calcium_hydroxide"},{"chemistry:test_tube_distilated_water", "chemistry:calcium_hydroxide"}}
})
minetest.register_craft({
type = "shapeless",
output = "default:paper",
recipe = {
"chemistry:celuose","chemistry:celuose",
}
})
minetest.register_craft({
type = "shapeless",
output = "chemistry:acetylene",
recipe = {
"chemistry:carbon","chemistry:carbon","chemistry:hydrogen",
"chemistry:hydrogen",
},
replacements = {{"chemistry:carbon", "chemistry:test_tube"},{"chemistry:carbon", "chemistry:test_tube"},{"chemistry:hydrogen", "chemistry:test_tube"}}
})
minetest.register_craft({
output = "chemistry:stainless_steel_block",
recipe = {
{'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
}
})
minetest.register_craft({
type = "shapeless",
output = "technic:stainless_steel 9",
recipe = {
"chemistry:stainless_steel_block",
}
})
minetest.register_craft({
output = 'chemistry:stamen 6',
recipe = {
{'', '', 'technic:rebar'},
{'', 'technic:rebar', ''},
{'technic:rebar', '', ''},
}
})
minetest.register_craft({
output = "chemistry:molecular_manipulator",
recipe = {
{'technic:control_logic_unit','technic:rebar','technic:control_logic_unit'},
{'technic:motor','chemistry:stamen','technic:motor'},
{'','default:diamond',''},
}
})
minetest.register_craft({
type = "shapeless",
output = "chemistry:aluminum_alloy_base 3",
recipe = {
"chemistry:aluminum_ingot","chemistry:aluminum_ingot","default:copper_ingot"
}
})
minetest.register_craft({
output = "chemistry:vacuum_chamber",
recipe = {
{"chemistry:aluminum_alloy", "chemistry:aluminum_alloy", "chemistry:aluminum_alloy"},
{"chemistry:aluminum_alloy", "", "chemistry:aluminum_alloy"},
{"chemistry:aluminum_alloy", "chemistry:aluminum_alloy", "chemistry:aluminum_alloy"}
}
})
minetest.register_craft({
output = "chemistry:vacuum_pump",
recipe = {
{"chemistry:aluminum_alloy", "technic:control_logic_unit", "chemistry:aluminum_alloy"},
{"technic:stainless_steel_ingot", "technic:motor", "technic:stainless_steel_ingot"},
{"chemistry:aluminum_alloy", "technic:stainless_steel_ingot", "chemistry:aluminum_alloy"}
}
})
minetest.register_craft({
output = "chemistry:microprocessor",
recipe = {
{"technic:control_logic_unit", "moreores:silver_ingot", "technic:control_logic_unit"},
{"moreores:silver_ingot", "technic:control_logic_unit", "moreores:silver_ingot"},
{"technic:control_logic_unit", "moreores:silver_ingot", "technic:control_logic_unit"}
}
})
minetest.register_craft({
output = "chemistry:pressure_chamber",
recipe = {
{"chemistry:aluminum_alloy", "chemistry:aluminum_alloy", "chemistry:aluminum_alloy"},
{"chemistry:aluminum_alloy", "", "chemistry:aluminum_alloy"},
{"chemistry:aluminum_alloy", "chemistry:aluminum_alloy", "chemistry:aluminum_alloy"}
}
})
minetest.register_craft({
output = "chemistry:dewar_vessel",
recipe = {
{"default:steel_ingot", "default:glass", "default:steel_ingot"},
{"default:glass", "default:steel_ingot", "default:glass"},
{"default:steel_ingot", "default:glass", "default:steel_ingot"}
}
})