make deckchair white, add variant for blue stripes

This commit is contained in:
Vanessa Ezekowitz 2015-04-14 10:50:15 -04:00
parent ba1167871f
commit 0e317a3460
4 changed files with 20 additions and 0 deletions

View File

@ -2766,6 +2766,15 @@ minetest.register_craft({
},
})
minetest.register_craft({
output = "homedecor:deckchair_striped_blue",
type = "shapeless",
recipe = {
"homedecor:deckchair",
"dye:blue"
}
})
minetest.register_craft({
output = "homedecor:office_chair_basic",
recipe = {

View File

@ -192,6 +192,17 @@ homedecor.register("deckchair", {
minetest.register_alias("homedecor:deckchair_foot", "homedecor:deckchair")
minetest.register_alias("homedecor:deckchair_head", "air")
homedecor.register("deckchair_striped_blue", {
mesh = "homedecor_deckchair.obj",
tiles = {"homedecor_deckchair_striped_blue.png"},
description = "Deck Chair",
groups = { snappy = 3 },
expand = { forward="air" },
sounds = default.node_sound_wood_defaults(),
selection_box = dc_cbox,
collision_box = dc_cbox,
})
homedecor.register("doghouse", {
mesh = "homedecor_doghouse.obj",
tiles = {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 359 B

After

Width:  |  Height:  |  Size: 329 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 B