forked from nalc/homedecor_modpack
add dvd/vcr
This commit is contained in:
parent
d42f384840
commit
144cb779fe
@ -105,3 +105,27 @@ minetest.register_node('homedecor:television', {
|
|||||||
sounds = default.node_sound_wood_defaults(),
|
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(),
|
||||||
|
})
|
||||||
|
|
||||||
|
BIN
homedecor/textures/homedecor_dvdvcr_back.png
Normal file
BIN
homedecor/textures/homedecor_dvdvcr_back.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 231 B |
BIN
homedecor/textures/homedecor_dvdvcr_bottom.png
Normal file
BIN
homedecor/textures/homedecor_dvdvcr_bottom.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 82 B |
BIN
homedecor/textures/homedecor_dvdvcr_front.png
Normal file
BIN
homedecor/textures/homedecor_dvdvcr_front.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 213 B |
BIN
homedecor/textures/homedecor_dvdvcr_sides.png
Normal file
BIN
homedecor/textures/homedecor_dvdvcr_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 103 B |
BIN
homedecor/textures/homedecor_dvdvcr_top.png
Normal file
BIN
homedecor/textures/homedecor_dvdvcr_top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 147 B |
Loading…
Reference in New Issue
Block a user