1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-27 17:30:17 +02:00

add hanging-from-chain ceiling lamp

This commit is contained in:
Vanessa Ezekowitz
2015-04-21 21:33:06 -04:00
parent 09c560cfe5
commit 8b924be206
5 changed files with 2084 additions and 0 deletions

View File

@ -3120,6 +3120,23 @@ minetest.register_craft({
},
})
minetest.register_craft({
output = "homedecor:ceiling_lamp",
recipe = {
{ "", "technic:brass_ingot", ""},
{ "", "homedecor:chainlink_brass", ""},
{ "default:glass", "homedecor:glowlight_small_cube_white", "default:glass"}
},
})
minetest.register_craft({
output = "homedecor:ceiling_lamp",
recipe = {
{ "", "chains:chain_top_brass", ""},
{ "default:glass", "homedecor:glowlight_small_cube_white", "default:glass"}
},
})
if (minetest.get_modpath("technic") and minetest.get_modpath("dye") and minetest.get_modpath("bees")) then
technic.register_separating_recipe({ input = {"bees:wax 1"}, output = {"homedecor:oil_extract 2","dye:yellow 1"} })
end