-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrafting.lua
More file actions
44 lines (36 loc) · 857 Bytes
/
crafting.lua
File metadata and controls
44 lines (36 loc) · 857 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
36
37
38
39
40
41
42
43
44
if otherworlds.settings.crafting.enable then
minetest.register_craft({
output = "asteroid:cobble",
recipe = {{"asteroid:stone"}}
})
minetest.register_craft({
output = "asteroid:gravel",
recipe = {{"asteroid:cobble"}}
})
minetest.register_craft({
output = "asteroid:dust",
recipe = {{"asteroid:gravel"}}
})
minetest.register_craft({
type = "cooking",
output = "asteroid:stone",
recipe = "asteroid:cobble"
})
minetest.register_craft({
output = "asteroid:redcobble",
recipe = {{"asteroid:redstone"}}
})
minetest.register_craft({
output = "asteroid:redgravel",
recipe = {{"asteroid:redcobble"}}
})
minetest.register_craft({
output = "asteroid:reddust",
recipe = {{"asteroid:redgravel"}}
})
minetest.register_craft({
type = "cooking",
output = "asteroid:redstone",
recipe = "asteroid:redcobble"
})
end