]> git.lizzy.rs Git - Crafter.git/blob - mods/nether/craft_recipes.lua
remove server debug
[Crafter.git] / mods / nether / craft_recipes.lua
1 minetest.register_craft({
2         type = "cooking",
3         output = "main:gold",
4         recipe = "nether:goldore",
5         cooktime = 5,
6 })
7 minetest.register_craft({
8         type = "cooking",
9         output = "main:iron",
10         recipe = "nether:ironore",
11         cooktime = 3,
12 })
13 minetest.register_craft({
14         type = "shapeless",
15         output = "nether:glowstone",
16         recipe = {"nether:glowstone_dust","nether:glowstone_dust","nether:glowstone_dust","nether:glowstone_dust"},
17 })