Traitor/mods/furniture/retail_shelving.lua

50 lines
1.4 KiB
Lua

minetest.register_node('furniture:retail_shelf_base_1',{
description = 'Retail Shelving Base',
drawtype = 'mesh',
mesh = 'furniture_rshelf_base_1.obj',
tiles = {'furniture_retail_shelving.png'},
paramtype = 'light',
paramtype2 = 'facedir',
groups = {breakable=1},
})
minetest.register_node('furniture:retail_shelf_base_2',{
description = 'Retail Shelving Base',
drawtype = 'mesh',
mesh = 'furniture_rshelf_base_2.obj',
tiles = {'furniture_retail_shelving.png'},
paramtype = 'light',
paramtype2 = 'facedir',
groups = {breakable=1},
})
minetest.register_node('furniture:retail_shelf_1',{
description = 'Retail Shelving',
drawtype = 'mesh',
mesh = 'furniture_rshelf_1.obj',
tiles = {'furniture_retail_shelving.png'},
paramtype = 'light',
paramtype2 = 'facedir',
groups = {breakable=1},
})
minetest.register_node('furniture:retail_shelf_2',{
description = 'Retail Shelving',
drawtype = 'mesh',
mesh = 'furniture_rshelf_2.obj',
tiles = {'furniture_retail_shelving.png'},
paramtype = 'light',
paramtype2 = 'facedir',
groups = {breakable=1},
})
minetest.register_node('furniture:retail_shelf_3',{
description = 'Retail Shelving',
drawtype = 'mesh',
mesh = 'furniture_rshelf_3.obj',
tiles = {'furniture_retail_shelving.png'},
paramtype = 'light',
paramtype2 = 'facedir',
groups = {breakable=1},
})