Add ore recipes

This commit is contained in:
Wuzzy 2017-01-05 01:21:10 +01:00
parent 48c605897f
commit 98a8df352b
2 changed files with 89 additions and 57 deletions

View File

@ -407,62 +407,6 @@ minetest.register_craft({
recipe = {{"default:steel_ingot"}},
})
minetest.register_craft({
type = "cooking",
output = "default:gold_nugget",
recipe = "default:sword_gold",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:gold_nugget",
recipe = "default:axe_gold",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:gold_nugget",
recipe = "default:shovel_gold",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:gold_nugget",
recipe = "default:pick_gold",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:iron_nugget",
recipe = "default:sword_steel",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:iron_nugget",
recipe = "default:axe_steel",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:iron_nugget",
recipe = "default:shovel_steel",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:iron_nugget",
recipe = "default:pick_steel",
cooktime = 10,
})
minetest.register_craft({
output = 'default:sandstone',
recipe = {
@ -725,11 +669,90 @@ minetest.register_craft({
minetest.register_craft({
type = "cooking",
output = "default:coal",
output = "default:coal_lump",
recipe = "default:stone_with_coal",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:diamond",
recipe = "default:stone_with_diamond",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:emerald",
recipe = "default:stone_with_emerald",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "dye:blue",
recipe = "default:stone_with_lapis",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:gold_nugget",
recipe = "default:sword_gold",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:gold_nugget",
recipe = "default:axe_gold",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:gold_nugget",
recipe = "default:shovel_gold",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:gold_nugget",
recipe = "default:pick_gold",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:iron_nugget",
recipe = "default:sword_steel",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:iron_nugget",
recipe = "default:axe_steel",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:iron_nugget",
recipe = "default:shovel_steel",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:iron_nugget",
recipe = "default:pick_steel",
cooktime = 10,
})
--
-- Fuels
--

View File

@ -244,3 +244,12 @@ function mesecon:update_autoconnect(pos, secondcall, replace_old)
end
minetest.register_alias("mesecons:redstone_dust", "mesecons:wire_00000000_off")
minetest.register_craft({
type = "cooking",
output = "mesecons:redstone_dust",
recipe = "default:stone_with_redstone",
cooktime = 10,
})