mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2025-01-08 23:50:19 +01:00
changed glowlight recipes to avoid conflicts with moreblocks, made IC rely on
moreores copper, added recipes to craft glow cubes back into glowlight slabs.
This commit is contained in:
parent
aa04eac212
commit
a3a95a59bd
42
crafts.lua
42
crafts.lua
@ -888,7 +888,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", "default:steel_ingot" },
|
{ "mesecons_materials:silicon", "moreores:copper_ingot" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -1153,7 +1153,7 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:glowlight_thick_yellow 6",
|
output = "homedecor:glowlight_thick_yellow 6",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moreblocks:superglowglass", "moreblocks:superglowglass", "moreblocks:superglowglass", },
|
{"moreblocks:superglowglass", "moreblocks:glowglass", "moreblocks:superglowglass", },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -1197,9 +1197,9 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:glowlight_small_cube_yellow 8",
|
output = "homedecor:glowlight_small_cube_yellow 16",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:stick" },
|
{"moreblocks:glowglass" },
|
||||||
{"moreblocks:superglowglass" },
|
{"moreblocks:superglowglass" },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -1220,13 +1220,29 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:glowlight_thick_yellow",
|
||||||
|
recipe = {
|
||||||
|
{"homedecor:glowlight_small_cube_yellow","homedecor:glowlight_small_cube_yellow"},
|
||||||
|
{"homedecor:glowlight_small_cube_yellow","homedecor:glowlight_small_cube_yellow"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:glowlight_thick_yellow",
|
||||||
|
recipe = {
|
||||||
|
{"homedecor:glowlight_small_cube_yellow_ceiling","homedecor:glowlight_small_cube_yellow_ceiling"},
|
||||||
|
{"homedecor:glowlight_small_cube_yellow_ceiling","homedecor:glowlight_small_cube_yellow_ceiling"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
-- white
|
-- white
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:glowlight_thick_white 6",
|
output = "homedecor:glowlight_thick_white 6",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "wool:white", "wool:white", "wool:white" },
|
{ "wool:white", "wool:white", "wool:white" },
|
||||||
{"moreblocks:superglowglass", "moreblocks:superglowglass", "moreblocks:superglowglass", },
|
{"moreblocks:superglowglass", "moreblocks:glowglass", "moreblocks:superglowglass", },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -1303,6 +1319,22 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:glowlight_thick_white",
|
||||||
|
recipe = {
|
||||||
|
{"homedecor:glowlight_small_cube_white","homedecor:glowlight_small_cube_white"},
|
||||||
|
{"homedecor:glowlight_small_cube_white","homedecor:glowlight_small_cube_white"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:glowlight_thick_white",
|
||||||
|
recipe = {
|
||||||
|
{"homedecor:glowlight_small_cube_white_ceiling","homedecor:glowlight_small_cube_white_ceiling"},
|
||||||
|
{"homedecor:glowlight_small_cube_white_ceiling","homedecor:glowlight_small_cube_white_ceiling"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
-- Fences and gates
|
-- Fences and gates
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
|
Loading…
Reference in New Issue
Block a user