gold_coins/crafts.lua
2024-12-07 12:16:13 +00:00

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"
}
})