-
Notifications
You must be signed in to change notification settings - Fork 1
/
recipes.lua
46 lines (42 loc) · 921 Bytes
/
recipes.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
local OB = "default:obsidian"
local MC = "default:mese_crystal"
local MB = "default:mese_block"
local DI = "default:diamond"
local MC = "default:mese_crystal"
local GL = "default:obsidian_glass"
local LV = "bucket:bucket_lava"
local TC = "meseportals:tesseract_crystal"
local PS = "meseportals:portal_segment"
minetest.register_craft({
output = "meseportals:tesseract_crystal",
recipe = {
{DI, MC, DI},
{MC, OB, MC},
{DI, MC, DI},
}
})
minetest.register_craft({
output = "meseportals:portal_segment",
recipe = {
{OB, OB, OB},
{MB, LV, MB},
{OB, OB, OB},
},
replacements = {{"bucket:bucket_lava", "bucket:bucket_empty"}}
})
minetest.register_craft({
output = "meseportals:portalnode_off",
recipe = {
{PS, TC, PS},
{TC, "", TC},
{PS, TC, PS},
}
})
minetest.register_craft({
output = "meseportals:unlinked_portal_controller",
recipe = {
{GL, GL, GL},
{GL, TC, GL},
{GL, GL, GL},
}
})