diff --git a/nodes.lua b/nodes.lua index 57bf843..b761e2e 100644 --- a/nodes.lua +++ b/nodes.lua @@ -35,29 +35,29 @@ xdecor.register("barrel", { }) xdecor.register("cabinet", { - description = "Cabinet", + description = "Wood Cabinet", inventory = {size=24}, - infotext = "Cabinet", + infotext = "Wood Cabinet", groups = {choppy=3, flammable=3}, sounds = default.node_sound_wood_defaults(), tiles = { - "default_wood.png", "default_wood.png", - "default_wood.png", "default_wood.png", - "default_wood.png", "xdecor_cabinet_front.png" + "xdecor_cabinet_sides.png", "xdecor_cabinet_sides.png", + "xdecor_cabinet_sides.png", "xdecor_cabinet_sides.png", + "xdecor_cabinet_sides.png", "xdecor_cabinet_front.png" } }) xdecor.register("cabinet_half", { - description = "Half Cabinet", + description = "Half Wood Cabinet", inventory = {size=8}, - infotext = "Half Cabinet", + infotext = "Half Wood Cabinet", groups = {choppy=3, flammable=3}, sounds = default.node_sound_wood_defaults(), node_box = xdecor.nodebox.slab_y(0.5, 0.5), tiles = { - "default_wood.png", "default_wood.png", - "default_wood.png", "default_wood.png", - "default_wood.png", "xdecor_cabinet_half_front.png" + "xdecor_cabinet_sides.png", "xdecor_cabinet_sides.png", + "xdecor_half_cabinet_sides.png", "xdecor_half_cabinet_sides.png", + "xdecor_half_cabinet_sides.png", "xdecor_half_cabinet_front.png" } }) diff --git a/textures/xdecor_cabinet_front.png b/textures/xdecor_cabinet_front.png index 4040ece..dedc4ea 100644 Binary files a/textures/xdecor_cabinet_front.png and b/textures/xdecor_cabinet_front.png differ diff --git a/textures/xdecor_cabinet_half_front.png b/textures/xdecor_cabinet_half_front.png deleted file mode 100644 index 9b8f57c..0000000 Binary files a/textures/xdecor_cabinet_half_front.png and /dev/null differ diff --git a/textures/xdecor_cabinet_sides.png b/textures/xdecor_cabinet_sides.png new file mode 100644 index 0000000..0d80269 Binary files /dev/null and b/textures/xdecor_cabinet_sides.png differ diff --git a/textures/xdecor_half_cabinet_front.png b/textures/xdecor_half_cabinet_front.png new file mode 100644 index 0000000..b227e1b Binary files /dev/null and b/textures/xdecor_half_cabinet_front.png differ diff --git a/textures/xdecor_half_cabinet_sides.png b/textures/xdecor_half_cabinet_sides.png new file mode 100644 index 0000000..701cc47 Binary files /dev/null and b/textures/xdecor_half_cabinet_sides.png differ