mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 23:33:51 +01:00
29 lines
399 B
Lua
29 lines
399 B
Lua
--
|
|
-- Crafting recipes
|
|
--
|
|
|
|
minetest.register_craft({
|
|
output = "keys:skeleton_key",
|
|
recipe = {
|
|
{"default:gold_ingot"},
|
|
}
|
|
})
|
|
|
|
--
|
|
-- Cooking recipes
|
|
--
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "default:gold_ingot",
|
|
recipe = "keys:key",
|
|
cooktime = 5,
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "default:gold_ingot",
|
|
recipe = "keys:skeleton_key",
|
|
cooktime = 5,
|
|
})
|