added a whole bunch of paintings
total of 20, wall-hanging style no crafting recipes yet.
|
@ -78,6 +78,7 @@ dofile(homedecor.modpath.."/laundry.lua")
|
|||
dofile(homedecor.modpath.."/furnaces.lua")
|
||||
dofile(homedecor.modpath.."/nightstands.lua")
|
||||
dofile(homedecor.modpath.."/clocks.lua")
|
||||
dofile(homedecor.modpath.."/paintings.lua")
|
||||
|
||||
dofile(homedecor.modpath.."/crafts.lua")
|
||||
dofile(homedecor.modpath.."/crafts_nomoreblocks.lua")
|
||||
|
|
25
homedecor/paintings.lua
Normal file
|
@ -0,0 +1,25 @@
|
|||
--Various kinds of paintings
|
||||
|
||||
for i = 1,20 do
|
||||
minetest.register_node("homedecor:painting_"..i, {
|
||||
description = "Decorative painting",
|
||||
drawtype = "nodebox",
|
||||
tiles = {
|
||||
"homedecor_painting_edges.png",
|
||||
"homedecor_painting_edges.png",
|
||||
"homedecor_painting_edges.png",
|
||||
"homedecor_painting_edges.png",
|
||||
"homedecor_painting_back.png",
|
||||
"homedecor_painting"..i..".png"
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{ -8/16, -8/16, 7/16, 8/16, 8/16, 8/16 },
|
||||
}
|
||||
},
|
||||
groups = {snappy=3},
|
||||
})
|
||||
end
|
BIN
homedecor/textures/homedecor_painting1.png
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
homedecor/textures/homedecor_painting10.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
homedecor/textures/homedecor_painting11.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
homedecor/textures/homedecor_painting12.png
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
homedecor/textures/homedecor_painting13.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
homedecor/textures/homedecor_painting14.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
homedecor/textures/homedecor_painting15.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
homedecor/textures/homedecor_painting16.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
homedecor/textures/homedecor_painting17.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
homedecor/textures/homedecor_painting18.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
homedecor/textures/homedecor_painting19.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
homedecor/textures/homedecor_painting2.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
homedecor/textures/homedecor_painting20.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
homedecor/textures/homedecor_painting3.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
homedecor/textures/homedecor_painting4.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
homedecor/textures/homedecor_painting5.png
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
homedecor/textures/homedecor_painting6.png
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
homedecor/textures/homedecor_painting7.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
homedecor/textures/homedecor_painting8.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
homedecor/textures/homedecor_painting9.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
homedecor/textures/homedecor_painting_back.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
homedecor/textures/homedecor_painting_edges.png
Normal file
After Width: | Height: | Size: 510 B |