1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-12 19:10:20 +02:00

Changed nodename of yellow lighting to clearly specify that (recipes are still

the same).  Added white lighting.
This commit is contained in:
Vanessa Ezekowitz
2012-10-01 19:22:54 -04:00
parent da69aa2534
commit 05e7b9f8e3
13 changed files with 225 additions and 90 deletions

View File

@ -1072,29 +1072,66 @@ minetest.register_craft({
-- Lighting
-- yellow
minetest.register_craft({
output = "homedecor:glowlight_thick 6",
output = "homedecor:glowlight_thick_yellow 6",
recipe = {
{"moreblocks:superglowglass", "moreblocks:superglowglass", "moreblocks:superglowglass", },
}
})
minetest.register_craft({
output = "homedecor:glowlight_thin 6",
output = "homedecor:glowlight_thin_yellow 6",
recipe = {
{"homedecor:glowlight_thick", "homedecor:glowlight_thick", "homedecor:glowlight_thick", },
{"homedecor:glowlight_thick_yellow", "homedecor:glowlight_thick_yellow", "homedecor:glowlight_thick_yellow", },
}
})
minetest.register_craft({
output = "homedecor:glowlight_small_cube 8",
output = "homedecor:glowlight_small_cube_yellow 8",
recipe = {
{"default:stick" },
{"moreblocks:superglowglass" },
}
})
-- Fences
-- white
minetest.register_craft({
output = "homedecor:glowlight_thick_white 6",
recipe = {
{ "wool:white", "wool:white", "wool:white" },
{"moreblocks:superglowglass", "moreblocks:superglowglass", "moreblocks:superglowglass", },
}
})
minetest.register_craft({
type = "shapeless",
output = "homedecor:glowlight_thick_white 2",
recipe = {
"wool:white",
"homedecor:glowlight_thick_yellow",
"homedecor:glowlight_thick_yellow",
}
})
minetest.register_craft({
output = "homedecor:glowlight_thin_white 6",
recipe = {
{"homedecor:glowlight_thick_white", "homedecor:glowlight_thick_white", "homedecor:glowlight_thick_white", },
}
})
minetest.register_craft({
output = "homedecor:glowlight_small_cube_white 8",
recipe = {
{"wool:white" },
{"moreblocks:superglowglass" },
}
})
-- Fences and gates
minetest.register_craft( {
output = 'homedecor:fence_brass 6',