forked from nalc/homedecor_modpack
add craft recipe for globe
This commit is contained in:
parent
06a67cc49d
commit
311b1ea4c5
|
@ -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
|
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"} })
|
technic.register_separating_recipe({ input = {"bees:wax 1"}, output = {"homedecor:oil_extract 2","dye:yellow 1"} })
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user