mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2025-07-06 00:20:21 +02:00
fix cabinet with drawers recipes (#41)
This commit is contained in:
@ -605,44 +605,56 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_colorable_steel",
|
output = "homedecor:kitchen_cabinet_colorable_with_drawers",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
{"homedecor:kitchen_cabinet_colorable", },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
local cabinet_types = { "homedecor:kitchen_cabinet_colorable", "homedecor:kitchen_cabinet_colorable_with_drawers" }
|
||||||
|
|
||||||
|
for _, cabinet in ipairs(cabinet_types) do
|
||||||
|
minetest.register_craft({
|
||||||
|
output = cabinet.."_steel",
|
||||||
|
recipe = {
|
||||||
{homedecor.materials.steel_ingot, homedecor.materials.steel_ingot, homedecor.materials.steel_ingot},
|
{homedecor.materials.steel_ingot, homedecor.materials.steel_ingot, homedecor.materials.steel_ingot},
|
||||||
{"", "homedecor:kitchen_cabinet_colorable", ""},
|
{"", cabinet, ""},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_colorable_steel",
|
output = cabinet.."_steel",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moreblocks:slab_steelblock_1"},
|
{"moreblocks:slab_steelblock_1"},
|
||||||
{ "homedecor:kitchen_cabinet_colorable" },
|
{cabinet},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_colorable_marble",
|
output = cabinet.."_marble",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"building_blocks:slab_marble"},
|
{"building_blocks:slab_marble"},
|
||||||
{"homedecor:kitchen_cabinet_colorable"},
|
{cabinet},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_colorable_marble",
|
output = cabinet.."_marble",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"technic:slab_marble_1"},
|
{"technic:slab_marble_1"},
|
||||||
{"homedecor:kitchen_cabinet_colorable"},
|
{cabinet},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_colorable_granite",
|
output = cabinet.."_granite",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"technic:slab_granite_1"},
|
{"technic:slab_granite_1"},
|
||||||
{"homedecor:kitchen_cabinet_colorable"},
|
{cabinet},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
|
Reference in New Issue
Block a user