Move crafting, cooking and fuel recipes into corresponding files
This commit is contained in:
parent
1082466796
commit
6e32287a42
6 changed files with 416 additions and 406 deletions
|
@ -453,7 +453,6 @@ for name, mat in pairs(craft_ingreds) do
|
|||
})
|
||||
end
|
||||
|
||||
|
||||
minetest.register_tool("default:key", {
|
||||
description = S("Key"),
|
||||
inventory_image = "default_key.png",
|
||||
|
@ -493,3 +492,27 @@ minetest.register_tool("default:key", {
|
|||
return nil
|
||||
end
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "default:pick_wood",
|
||||
burntime = 6,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "default:shovel_wood",
|
||||
burntime = 4,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "default:axe_wood",
|
||||
burntime = 6,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "default:sword_wood",
|
||||
burntime = 5,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue