12 lines
248 B
Lua
12 lines
248 B
Lua
minetest.register_craftitem("brewing:magic_crystal", {
|
|
description = ("Magic Crystal"),
|
|
inventory_image = "brewing_magic_crystal.png",
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = '"brewing:magic_crystal" 6',
|
|
recipe = {
|
|
{'brewing:magic_gem'}
|
|
}
|
|
})
|