forked from nalc/homedecor_modpack
Afterward tweaking
This commit is contained in:
parent
0f0942d08c
commit
6f33c9ff0c
|
@ -148,7 +148,7 @@ homedecor.register("shower_tray", {
|
|||
--Shower Head
|
||||
local sh_cbox = {
|
||||
type = "fixed",
|
||||
fixed = { -0.2, -0.4, -0.1, 0.2, 0.1, 0.5 }
|
||||
fixed = { -0.2, -0.4, -0.05, 0.2, 0.1, 0.5 }
|
||||
}
|
||||
|
||||
homedecor.register("shower_head", {
|
||||
|
@ -177,6 +177,7 @@ homedecor.register("bathroom_set", {
|
|||
"homedecor_bathroom_set_cup.png",
|
||||
"homedecor_bathroom_set_toothpaste.png",
|
||||
},
|
||||
inventory_image = "homedecor_bathroom_set_inv.png",
|
||||
description = "Bathroom sundries set",
|
||||
groups = {snappy=3},
|
||||
selection_box = bs_cbox,
|
||||
|
|
|
@ -3066,6 +3066,15 @@ minetest.register_craft({
|
|||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "homedecor:bathroom_set",
|
||||
recipe = {
|
||||
{ "", "homedecor:glass_table_small_round", "" },
|
||||
{ "homedecor:plastic_sheeting", "homedecor:glass_table_small_round", "homedecor:plastic_sheeting" },
|
||||
{ "group:stick", "homedecor:plastic_sheeting", "group:stick" }
|
||||
},
|
||||
})
|
||||
|
||||
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
|
||||
|
|
BIN
homedecor/textures/homedecor_bathroom_set_inv.png
Normal file
BIN
homedecor/textures/homedecor_bathroom_set_inv.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
BIN
homedecor/textures/homedecor_windowblind_thick_inv.png
Normal file
BIN
homedecor/textures/homedecor_windowblind_thick_inv.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
|
@ -73,6 +73,7 @@ local wb1_cbox = {
|
|||
homedecor.register("blinds_thick", {
|
||||
description = "Window Blinds (thick)",
|
||||
mesh = "homedecor_windowblind_thick.obj",
|
||||
inventory_image = "homedecor_windowblind_thick_inv.png",
|
||||
tiles = {
|
||||
"homedecor_windowblind_strings.png",
|
||||
"homedecor_windowblinds.png"
|
||||
|
@ -92,6 +93,7 @@ local wb2_cbox = {
|
|||
homedecor.register("blinds_thin", {
|
||||
description = "Window Blinds (thin)",
|
||||
mesh = "homedecor_windowblind_thin.obj",
|
||||
inventory_image = "homedecor_windowblind_thick_inv.png",
|
||||
tiles = {
|
||||
"homedecor_windowblind_strings.png",
|
||||
"homedecor_windowblinds.png"
|
||||
|
|
Loading…
Reference in New Issue
Block a user