add craft recipe for globe

This commit is contained in:
Vanessa Ezekowitz 2015-03-23 01:52:44 -04:00
parent 06a67cc49d
commit 311b1ea4c5
1 changed files with 18 additions and 0 deletions

View File

@ -3039,6 +3039,24 @@ minetest.register_craft({
},
})
minetest.register_craft({
output = "homedecor:desk_globe",
recipe = {
{ "group:stick", "homedecor:plastic_sheeting", "dye:green" },
{ "group:stick", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
{ "group:stick", "stairs:slab_wood", "dye:blue" }
},
})
minetest.register_craft({
output = "homedecor:desk_globe",
recipe = {
{ "group:stick", "homedecor:plastic_sheeting", "dye:green" },
{ "group:stick", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
{ "group:stick", "stairs:slab_wood", "dye:blue" }
},
})
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