forked from mtcontrib/homedecor_modpack
Fix recipes.
This commit is contained in:
parent
2a020c2c49
commit
432b4046e1
32
crafts.lua
32
crafts.lua
@ -708,7 +708,7 @@ minetest.register_craft( {
|
|||||||
output = "homedecor:ic 4",
|
output = "homedecor:ic 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "mesecons_materials:silicon", "mesecons_materials:silicon" },
|
{ "mesecons_materials:silicon", "mesecons_materials:silicon" },
|
||||||
{ "mesecons_materials:silicon", "moreores:copper_ingot" },
|
{ "mesecons_materials:silicon", "default:copper_ingot" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -721,7 +721,7 @@ minetest.register_craft( {
|
|||||||
output = "homedecor:television",
|
output = "homedecor:television",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
||||||
{ "homedecor:plastic_sheeting", "moreblocks:glowglass", "homedecor:plastic_sheeting" },
|
{ "homedecor:plastic_sheeting", "moreblocks:glow_glass", "homedecor:plastic_sheeting" },
|
||||||
{ "homedecor:ic", "homedecor:ic", "homedecor:ic" },
|
{ "homedecor:ic", "homedecor:ic", "homedecor:ic" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@ -790,7 +790,7 @@ minetest.register_craft( {
|
|||||||
output = "homedecor:speaker",
|
output = "homedecor:speaker",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "default:wood", "wool:black", "default:wood" },
|
{ "default:wood", "wool:black", "default:wood" },
|
||||||
{ "default:wood", "moreores:copper_ingot", "default:wood" },
|
{ "default:wood", "default:copper_ingot", "default:wood" },
|
||||||
{ "default:wood", "wool:black", "default:wood" },
|
{ "default:wood", "wool:black", "default:wood" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@ -799,7 +799,7 @@ minetest.register_craft( {
|
|||||||
output = "homedecor:speaker_small",
|
output = "homedecor:speaker_small",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "default:wood", "wool:black", "default:wood" },
|
{ "default:wood", "wool:black", "default:wood" },
|
||||||
{ "default:wood", "moreores:copper_ingot", "default:wood" },
|
{ "default:wood", "default:copper_ingot", "default:wood" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -809,7 +809,7 @@ minetest.register_craft( {
|
|||||||
output = "homedecor:speaker",
|
output = "homedecor:speaker",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "default:wood", "cotton:black", "default:wood" },
|
{ "default:wood", "cotton:black", "default:wood" },
|
||||||
{ "default:wood", "moreores:copper_ingot", "default:wood" },
|
{ "default:wood", "default:copper_ingot", "default:wood" },
|
||||||
{ "default:wood", "cotton:black", "default:wood" },
|
{ "default:wood", "cotton:black", "default:wood" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@ -818,7 +818,7 @@ minetest.register_craft( {
|
|||||||
output = "homedecor:speaker_small",
|
output = "homedecor:speaker_small",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "default:wood", "cotton:black", "default:wood" },
|
{ "default:wood", "cotton:black", "default:wood" },
|
||||||
{ "default:wood", "moreores:copper_ingot", "default:wood" },
|
{ "default:wood", "default:copper_ingot", "default:wood" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -928,8 +928,8 @@ minetest.register_craft({
|
|||||||
output = "homedecor:oven",
|
output = "homedecor:oven",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot", },
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot", },
|
||||||
{"default:steel_ingot", "moreblocks:ironglass", "default:steel_ingot", },
|
{"default:steel_ingot", "moreblocks:iron_glass", "default:steel_ingot", },
|
||||||
{"default:steel_ingot", "moreores:copper_ingot", "default:steel_ingot", },
|
{"default:steel_ingot", "default:copper_ingot", "default:steel_ingot", },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -937,15 +937,15 @@ minetest.register_craft({
|
|||||||
output = "homedecor:microwave_oven 2",
|
output = "homedecor:microwave_oven 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot", },
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot", },
|
||||||
{"default:steel_ingot", "moreblocks:ironglass", "mesecons_materials:silicon", },
|
{"default:steel_ingot", "moreblocks:iron_glass", "mesecons_materials:silicon", },
|
||||||
{"default:steel_ingot", "moreores:copper_ingot", "default:mese_crystal", },
|
{"default:steel_ingot", "default:copper_ingot", "default:mese_crystal", },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:refrigerator",
|
output = "homedecor:refrigerator",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:steel_ingot", "moreblocks:glowglass", "default:steel_ingot", },
|
{"default:steel_ingot", "moreblocks:glow_glass", "default:steel_ingot", },
|
||||||
{"default:steel_ingot", "moreores:tin_ingot", "default:steel_ingot", },
|
{"default:steel_ingot", "moreores:tin_ingot", "default:steel_ingot", },
|
||||||
{"default:steel_ingot", "default:clay", "default:steel_ingot", },
|
{"default:steel_ingot", "default:clay", "default:steel_ingot", },
|
||||||
}
|
}
|
||||||
@ -982,7 +982,7 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:glowlight_half_yellow 6",
|
output = "homedecor:glowlight_half_yellow 6",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moreblocks:superglowglass", "moreblocks:glowglass", "moreblocks:superglowglass", },
|
{"moreblocks:super_glow_glass", "moreblocks:glow_glass", "moreblocks:super_glow_glass", },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -996,8 +996,8 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:glowlight_small_cube_yellow 16",
|
output = "homedecor:glowlight_small_cube_yellow 16",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moreblocks:glowglass" },
|
{"moreblocks:glow_glass" },
|
||||||
{"moreblocks:superglowglass" },
|
{"moreblocks:super_glow_glass" },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -1022,7 +1022,7 @@ minetest.register_craft({
|
|||||||
output = "homedecor:glowlight_half_white 6",
|
output = "homedecor:glowlight_half_white 6",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "group:dye,basecolor_white", "group:dye,basecolor_white", "group:dye,basecolor_white" },
|
{ "group:dye,basecolor_white", "group:dye,basecolor_white", "group:dye,basecolor_white" },
|
||||||
{"moreblocks:superglowglass", "moreblocks:glowglass", "moreblocks:superglowglass", },
|
{"moreblocks:super_glow_glass", "moreblocks:glow_glass", "moreblocks:super_glow_glass", },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -1047,7 +1047,7 @@ minetest.register_craft({
|
|||||||
output = "homedecor:glowlight_small_cube_white 8",
|
output = "homedecor:glowlight_small_cube_white 8",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"group:dye,basecolor_white" },
|
{"group:dye,basecolor_white" },
|
||||||
{"moreblocks:superglowglass" },
|
{"moreblocks:super_glow_glass" },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user