brewing/cauldron1.lua

12 lines
306 B
Lua
Raw Permalink Normal View History

2024-08-19 08:31:51 +03:00
--Brewing Cauldron
minetest.register_craft({
output = '"brewing:magic_cauldron" 1',
recipe = {
{'default:steel_ingot', '', 'default:steel_ingot'},
{'default:steel_ingot', 'brewing:magic_crystal', 'default:steel_ingot'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}
}
})