mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-10-31 23:40:27 +01:00
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:
parent
b3cd8e45fb
commit
f8f595b3b9
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
2370
homedecor/models/homedecor_4_bottles.obj
Normal file
2370
homedecor/models/homedecor_4_bottles.obj
Normal file
File diff suppressed because it is too large
Load Diff
1990
homedecor/models/homedecor_4_bottles_multi.obj
Normal file
1990
homedecor/models/homedecor_4_bottles_multi.obj
Normal file
File diff suppressed because it is too large
Load Diff
BIN
homedecor/textures/homedecor_4_bottles_brown_inv.png
Normal file
BIN
homedecor/textures/homedecor_4_bottles_brown_inv.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.5 KiB |
BIN
homedecor/textures/homedecor_4_bottles_green_inv.png
Normal file
BIN
homedecor/textures/homedecor_4_bottles_green_inv.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.5 KiB |
BIN
homedecor/textures/homedecor_4_bottles_multi.png
Normal file
BIN
homedecor/textures/homedecor_4_bottles_multi.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
BIN
homedecor/textures/homedecor_4_bottles_multi_inv.png
Normal file
BIN
homedecor/textures/homedecor_4_bottles_multi_inv.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.9 KiB |
Loading…
Reference in New Issue
Block a user