add 4-packs of green and brown bottles, and a 4-pack with both colors

add recipe for wine rack using multiple 4-packs of brown bottles + wood
This commit is contained in:
Vanessa Ezekowitz 2015-01-02 05:29:42 -05:00
parent b3cd8e45fb
commit f8f595b3b9
8 changed files with 4447 additions and 1 deletions

View File

@ -2910,6 +2910,48 @@ minetest.register_craft({
},
})
minetest.register_craft({
type = "shapeless",
output = "homedecor:4_bottles_brown",
recipe = {
"homedecor:bottle_brown",
"homedecor:bottle_brown",
"homedecor:bottle_brown",
"homedecor:bottle_brown"
},
})
minetest.register_craft({
type = "shapeless",
output = "homedecor:4_bottles_green",
recipe = {
"homedecor:bottle_green",
"homedecor:bottle_green",
"homedecor:bottle_green",
"homedecor:bottle_green"
},
})
minetest.register_craft({
type = "shapeless",
output = "homedecor:4_bottles_multi",
recipe = {
"homedecor:bottle_brown",
"homedecor:bottle_brown",
"homedecor:bottle_green",
"homedecor:bottle_green",
},
})
minetest.register_craft({
output = "homedecor:wine_rack",
recipe = {
{ "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" },
{ "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" },
{ "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" },
},
})
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
end

View File

@ -1078,6 +1078,50 @@ minetest.register_node("homedecor:bottle_green", {
selection_box = bottle_cbox
})
-- 4-bottle sets
minetest.register_node("homedecor:4_bottles_brown", {
tiles = { "homedecor_bottle_brown.png" },
inventory_image = "homedecor_4_bottles_brown_inv.png",
description = "Four brown bottles",
drawtype = "mesh",
mesh = "homedecor_4_bottles.obj",
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,
groups = {snappy=3},
collision_box = bottle_cbox,
selection_box = bottle_cbox
})
minetest.register_node("homedecor:4_bottles_green", {
tiles = { "homedecor_bottle_green.png" },
inventory_image = "homedecor_4_bottles_green_inv.png",
description = "Four green bottles",
drawtype = "mesh",
mesh = "homedecor_4_bottles.obj",
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,
groups = {snappy=3},
collision_box = bottle_cbox,
selection_box = bottle_cbox
})
minetest.register_node("homedecor:4_bottles_multi", {
tiles = { "homedecor_4_bottles_multi.png" },
inventory_image = "homedecor_4_bottles_multi_inv.png",
description = "Four misc brown/green bottles",
drawtype = "mesh",
mesh = "homedecor_4_bottles_multi.obj",
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,
groups = {snappy=3},
collision_box = bottle_cbox,
selection_box = bottle_cbox
})
minetest.register_node("homedecor:coffee_maker", {
tiles = {
"homedecor_coffeemaker_top.png",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB