1
0
mirror of https://codeberg.org/minenux/minetest-mod-xdecor synced 2023-10-20 21:43:39 -07:00

Better plant pot texture and make it plantlike for simplicity

This commit is contained in:
kilbith 2015-09-01 13:10:26 +02:00
parent 5f623c4ae7
commit 4894600bb0
5 changed files with 6 additions and 4 deletions

View File

@ -407,7 +407,7 @@ local flowers = {"dandelion_white", "dandelion_yellow", "geranium",
for _, f in pairs(flowers) do
xdecor.register("potted_"..f, {
description = "Potted Flowers ("..f..")",
description = string.gsub("Potted Flowers ("..f..")", "_", " "),
walkable = false,
groups = {dig_immediate=3, flammable=3, plant=1, flower=1},
tiles = {"xdecor_"..f.."_pot.png"},
@ -441,10 +441,12 @@ xdecor.register("painting", {
xdecor.register("plant_pot", {
description = "Plant Pot",
drawtype = "plantlike",
inventory_image = "xdecor_plant_pot.png",
wield_image = "xdecor_plant_pot.png",
groups = {snappy=3},
tiles = {"xdecor_plant_pot_top.png", "xdecor_plant_pot_bottom.png",
"xdecor_plant_pot_sides.png"},
sounds = default.node_sound_stone_defaults(),
tiles = {"xdecor_plant_pot.png"},
sounds = default.node_sound_stone_defaults()
})
xdecor.register("metal_cabinet", {

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 313 B