Afterward tweaking

This commit is contained in:
kilbith 2015-03-29 13:13:17 +02:00
parent 0f0942d08c
commit 6f33c9ff0c
5 changed files with 13 additions and 1 deletions

View File

@ -148,7 +148,7 @@ homedecor.register("shower_tray", {
--Shower Head --Shower Head
local sh_cbox = { local sh_cbox = {
type = "fixed", 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", { homedecor.register("shower_head", {
@ -177,6 +177,7 @@ homedecor.register("bathroom_set", {
"homedecor_bathroom_set_cup.png", "homedecor_bathroom_set_cup.png",
"homedecor_bathroom_set_toothpaste.png", "homedecor_bathroom_set_toothpaste.png",
}, },
inventory_image = "homedecor_bathroom_set_inv.png",
description = "Bathroom sundries set", description = "Bathroom sundries set",
groups = {snappy=3}, groups = {snappy=3},
selection_box = bs_cbox, selection_box = bs_cbox,

View File

@ -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 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -73,6 +73,7 @@ local wb1_cbox = {
homedecor.register("blinds_thick", { homedecor.register("blinds_thick", {
description = "Window Blinds (thick)", description = "Window Blinds (thick)",
mesh = "homedecor_windowblind_thick.obj", mesh = "homedecor_windowblind_thick.obj",
inventory_image = "homedecor_windowblind_thick_inv.png",
tiles = { tiles = {
"homedecor_windowblind_strings.png", "homedecor_windowblind_strings.png",
"homedecor_windowblinds.png" "homedecor_windowblinds.png"
@ -92,6 +93,7 @@ local wb2_cbox = {
homedecor.register("blinds_thin", { homedecor.register("blinds_thin", {
description = "Window Blinds (thin)", description = "Window Blinds (thin)",
mesh = "homedecor_windowblind_thin.obj", mesh = "homedecor_windowblind_thin.obj",
inventory_image = "homedecor_windowblind_thick_inv.png",
tiles = { tiles = {
"homedecor_windowblind_strings.png", "homedecor_windowblind_strings.png",
"homedecor_windowblinds.png" "homedecor_windowblinds.png"