mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-11-20 09:00:32 +01:00
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:
parent
df547b3241
commit
638c8d9ac4
@ -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" },
|
||||
},
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user