Add iron/gold nugget recipes
This commit is contained in:
parent
164792e1c0
commit
fea3049954
5 changed files with 135 additions and 37 deletions
|
@ -386,6 +386,59 @@ minetest.register_craft({
|
|||
recipe = {{"default:gold_ingot"}},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:iron_nugget 9",
|
||||
recipe = {{"default:steel_ingot"}},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "default:sword_gold",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "default:axe_gold",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "default:shovel_gold",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "default:pick_gold",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "default:sword_steel",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "default:axe_steel",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "default:shovel_steel",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "default:pick_steel",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sandstone',
|
||||
recipe = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue