mc/crafting.lua

11 lines
281 B
Lua
Raw Permalink Normal View History

2021-03-24 15:45:43 +01:00
minetest.register_craft({
type = "shapeless",
output = "mc:warped_fungus_stick",
recipe = {"mcl_fishing:fishing_rod", "mc:warped_fungus"}
2021-03-28 17:45:07 +02:00
})
minetest.register_craft({
type = "cooking",
output = 'mcl_core:gold_ingot',
recipe = 'mc:nether_gold_ore',
cooktime = 10,
2021-03-24 15:45:43 +01:00
})