1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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},
- })
|