Skip to content
Snippets Groups Projects
Commit 144cb779 authored by Vanessa Ezekowitz's avatar Vanessa Ezekowitz
Browse files

add dvd/vcr

parent d42f3848
No related branches found
No related tags found
No related merge requests found
......@@ -105,3 +105,27 @@ minetest.register_node('homedecor:television', {
sounds = default.node_sound_wood_defaults(),
})
minetest.register_node("homedecor:dvd_vcr", {
description = S("DVD and VCR"),
drawtype = "nodebox",
tiles = {
"homedecor_dvdvcr_top.png",
"homedecor_dvdvcr_bottom.png",
"homedecor_dvdvcr_sides.png",
"homedecor_dvdvcr_sides.png^[transformFX",
"homedecor_dvdvcr_back.png",
"homedecor_dvdvcr_front.png",
},
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.3125, -0.5, -0.25, 0.3125, -0.375, 0.1875},
{-0.25, -0.5, -0.25, 0.25, -0.1875, 0.125},
}
},
groups = { snappy = 3 },
sounds = default.node_sound_wood_defaults(),
})
homedecor/textures/homedecor_dvdvcr_back.png

231 B

homedecor/textures/homedecor_dvdvcr_bottom.png

82 B

homedecor/textures/homedecor_dvdvcr_front.png

213 B

homedecor/textures/homedecor_dvdvcr_sides.png

103 B

homedecor/textures/homedecor_dvdvcr_top.png

147 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment