Make new metals actually possible to get

This commit is contained in:
KaadmY 2017-05-17 14:04:53 -07:00
parent 7ab7f642f1
commit ed9b0fcd92
2 changed files with 19 additions and 1 deletions

View File

@ -85,7 +85,7 @@ crafting.register_craft(
output = "default:ingot_steel 2",
items = {
"default:lump_coal",
"default:ingot_steel 4",
"default:ingot_wrought_iron 4",
}
})

View File

@ -45,6 +45,8 @@ minetest.register_craft(
cooktime = 6,
})
-- Metal smelting
minetest.register_craft(
{
type = "cooking",
@ -53,6 +55,22 @@ minetest.register_craft(
cooktime = 3,
})
minetest.register_craft(
{
type = "cooking",
output = "default:ingot_tin",
recipe = "default:lump_tin",
cooktime = 3,
})
minetest.register_craft(
{
type = "cooking",
output = "default:ingot_copper",
recipe = "default:lump_copper",
cooktime = 3,
})
minetest.register_craft(
{
type = "cooking",