Add recipes for steel-, granite-, marble-topped kitchen cabinets.

steel-topped cabinets can use either three default steel ingots in a row
immediately above a cabinet, or the thinnest cut of steelblock slab via
Moreblocks' circular saw, above the cabinet.

granite-topped cabinets require the thinnest cut of technic granite slab.

marble-topped cabinects can use either a marble slab from homedecor
modpack's building_blocks mod, or the thinnest cut of technic marble
slab (but not the marble bricks)
This commit is contained in:
Vanessa Ezekowitz 2014-06-27 18:29:08 -04:00
parent df547b3241
commit 638c8d9ac4
1 changed files with 41 additions and 0 deletions

View File

@ -959,6 +959,46 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "homedecor:kitchen_cabinet_steel",
recipe = {
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"", "homedecor:kitchen_cabinet", ""},
}
})
minetest.register_craft({
output = "homedecor:kitchen_cabinet_steel",
recipe = {
{"moreblocks:slab_steelblock_1"},
{ "homedecor:kitchen_cabinet" },
}
})
minetest.register_craft({
output = "homedecor:kitchen_cabinet_marble",
recipe = {
{"building_blocks:slab_marble"},
{"homedecor:kitchen_cabinet"},
}
})
minetest.register_craft({
output = "homedecor:kitchen_cabinet_marble",
recipe = {
{"technic:slab_marble_1"},
{"homedecor:kitchen_cabinet"},
}
})
minetest.register_craft({
output = "homedecor:kitchen_cabinet_granite",
recipe = {
{"technic:slab_granite_1"},
{"homedecor:kitchen_cabinet"},
}
})
minetest.register_craft({
type = "shapeless",
output = "homedecor:kitchen_cabinet_half 2",
@ -1424,3 +1464,4 @@ minetest.register_craft({
{ "default:clay_brick", "", "default:clay_brick" },
},
})