1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- minetest.register_node('sss_map:crown_1', {
- description = 'Crown Molding (1x1)',
- drawtype = 'mesh',
- mesh = 'sss_map_crown_1.obj',
- tiles = {'sss_map_crown_1.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- wield_scale = {x = .5, y = .5, z = .5},
- selection_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, .5, .5, .3125},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, .5, .5, .3125},
- },
- groups = {breakable=1}
- })
- minetest.register_node('sss_map:crown_2', {
- description = 'Crown Molding (2x1)',
- drawtype = 'mesh',
- mesh = 'sss_map_crown_2.obj',
- tiles = {'sss_map_crown_2.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- wield_scale = {x = .5, y = .5, z = .5},
- selection_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, 1.5, .5, .3125},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, 1.5, .5, .3125},
- },
- groups = {breakable=1}
- })
- minetest.register_node('sss_map:crown_corner', {
- description = 'Crown Molding (corner)',
- drawtype = 'mesh',
- mesh = 'sss_map_crown_corner.obj',
- tiles = {'sss_map_crown_corner.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- wield_scale = {x = .5, y = .5, z = .5},
- selection_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, 1.5, .5, .3125},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, 1.5, .5, .3125},
- },
- groups = {breakable=1}
- })
- minetest.register_node('sss_map:crown_t', {
- description = 'Crown Molding (T)',
- drawtype = 'mesh',
- mesh = 'sss_map_crown_t.obj',
- tiles = {'sss_map_crown_t.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- wield_scale = {x = .5, y = .5, z = .5},
- selection_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, .5, .5, .3125},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, .5, .5, .3125},
- },
- groups = {breakable=1}
- })
- minetest.register_node('sss_map:crown_x', {
- description = 'Crown Molding (Cross)',
- drawtype = 'mesh',
- mesh = 'sss_map_crown_x.obj',
- tiles = {'sss_map_crown_x.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- wield_scale = {x = .5, y = .5, z = .5},
- selection_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, .5, .5, .3125},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.3125, .5, .5, .3125},
- },
- groups = {breakable=1}
- })
|