16 lines
428 B
Lua
16 lines
428 B
Lua
minetest.register_craft({
|
|
type = "shapeless",
|
|
output = "basic_materials:gold_strip 12",
|
|
recipe = {
|
|
"default:gold_ingot","default:gold_ingot"
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "shapeless",
|
|
output = "default:gold_ingot",
|
|
recipe = {
|
|
"basic_materials:gold_strip","basic_materials:gold_strip","basic_materials:gold_strip",
|
|
"basic_materials:gold_strip","basic_materials:gold_strip","basic_materials:gold_strip"
|
|
}
|
|
}) |