add brass-themed version of bathroom taps

remame inv/wield image for steel one
This commit is contained in:
Vanessa Ezekowitz 2015-04-27 16:58:45 -04:00
parent 57d6fb423c
commit 0323ba021b
4 changed files with 31 additions and 2 deletions

View File

@ -104,8 +104,29 @@ homedecor.register("taps", {
"homedecor_white_metal.png",
"homedecor_bright_metal.png"
},
inventory_image = "3dforniture_inv_taps.png",
wield_image = "3dforniture_inv_taps.png",
inventory_image = "3dforniture_taps_inv.png",
wield_image = "3dforniture_taps_inv.png",
sunlight_propagates = true,
selection_box = {
type = "fixed",
fixed = { -4/16, -7/16, 4/16, 4/16, -4/16, 8/16 },
},
walkable = false,
groups = {cracky=2,},
sounds = default.node_sound_stone_defaults(),
})
homedecor.register("taps_brass", {
description = S("Bathroom taps/faucet (brass)"),
mesh = "homedecor_bathroom_faucet.obj",
tiles = {
"homedecor_tile_brass2.png",
"homedecor_tile_brass2.png",
"homedecor_white_metal.png",
"homedecor_tile_brass2.png"
},
inventory_image = "3dforniture_taps_brass_inv.png",
wield_image = "3dforniture_taps_brass_inv.png",
sunlight_propagates = true,
selection_box = {
type = "fixed",
@ -117,6 +138,7 @@ homedecor.register("taps", {
})
--Shower Tray
homedecor.register("shower_tray", {
description = S("Shower Tray"),
tiles = {

View File

@ -216,6 +216,13 @@ minetest.register_craft({
},
})
minetest.register_craft({
output = "homedecor:taps_brass",
recipe = {
{ "technic:brass_ingot","bucket:bucket_water", "technic:brass_ingot" },
},
})
minetest.register_craft({
output = "homedecor:shower_tray",
recipe = {

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB