123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- minetest.register_node('furniture:stool_short', {
- description = 'Short stool',
- drawtype = 'mesh',
- mesh = 'furniture_stool_short.obj',
- tiles = {'furniture_stool_short.png'},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, 0, .375},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, 0, .375},
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:stool_tall', {
- description = 'Tall stool',
- drawtype = 'mesh',
- mesh = 'furniture_stool_tall.obj',
- tiles = {'furniture_stool_tall.png'},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, .5, .375},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, .5, .375},
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:chair', {
- description = 'Chair',
- drawtype = 'mesh',
- mesh = 'furniture_chair.obj',
- tiles = {'furniture_chair.png'},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, 0, .375},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, 0, .375},
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:bench', {
- description = 'Bench',
- drawtype = 'mesh',
- mesh = 'furniture_bench.obj',
- tiles = {'furniture_bench.png'},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, 1.375, 0, .375},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, 1.375, 0, .375},
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:bench_with_back', {
- description = 'Bench with Back',
- drawtype = 'mesh',
- mesh = 'furniture_bench_with_back.obj',
- tiles = {'furniture_bench_with_back.png'},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {{-.375, -.5, -.375, .5, 0, .45}, --seat
- {-.375, 0, .275, 1.375, .5, .375}} --back
- },
- collision_box = {
- type = 'fixed',
- fixed = {{-.375, -.5, -.375, 1.375, 0, .45},
- {-.375, 0, .275, 1.375, .5, .375}}
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:bench_picnic', {
- description = 'Picnic Table',
- drawtype = 'mesh',
- mesh = 'furniture_bench_picnic.obj',
- tiles = {'furniture_bench_picnic.png'},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.375, -.5, -.375, 1.375, 0, 1.375},
- {-.375, 0, -.0625, 1.375, .5, 1.0625}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.375, -.5, -.375, 1.375, 0, 1.375},
- {-.375, 0, -.0625, 1.375, .5, 1.0625}
- }
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:stool_2', {
- description = 'Short stool',
- drawtype = 'mesh',
- mesh = 'furniture_stool_2.obj',
- tiles = {'furniture_stool_2.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- selection_box = {
- type = 'fixed',
- fixed = {-.25, -.5, -.25, .25, .0625, .25},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.25, -.5, -.25, .25, .0625, .25},
- },
- groups = {breakable=1},
- })
- ---Cushioned items. Yay. :P
- local dye_table = furniture.dyes
- for i in ipairs(dye_table) do
- local name = dye_table[i][1]
- local desc = dye_table[i][2]
- local hex = dye_table[i][3]
- minetest.register_node('furniture:stool_short_'..name, {
- description = 'Short Stool with '..desc..' Cushion',
- drawtype = 'mesh',
- mesh = 'furniture_stool_short_cushion.obj',
- tiles = {'furniture_stool_short.png', 'furniture_cushion_pad.png'},
- overlay_tiles = {'', {name = 'furniture_cushion_pad.png', color = hex}},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, 0, .375},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, 0, .375},
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:stool_tall_'..name, {
- description = 'Tall Stool with '..desc..' Cushion',
- drawtype = 'mesh',
- mesh = 'furniture_stool_tall_cushion.obj',
- tiles = {'furniture_stool_tall.png', 'furniture_cushion_pad.png'},
- overlay_tiles = {'', {name = 'furniture_cushion_pad.png', color = hex}},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, .5, .375},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, .5, .375},
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:chair_'..name, {
- description = 'Chair with '..desc..' Cushion',
- drawtype = 'mesh',
- mesh = 'furniture_chair_cushion.obj',
- tiles = {'furniture_chair.png', 'furniture_cushion_pad.png'},
- overlay_tiles = {'', {name = 'furniture_cushion_pad.png', color = hex}},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_stain_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, 0, .375},
- },
- collision_box = {
- type = 'fixed',
- fixed = {-.375, -.5, -.375, .375, 0, .375},
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:chair_waitingroom_'..name, {
- description = 'Modern Chair with '..desc..' Cushion',
- drawtype = 'mesh',
- mesh = 'furniture_chair_waitingroom.obj',
- tiles = {'furniture_chair_waitingroom_frame.png', 'furniture_chair_waitingroom_cushion.png'},
- overlay_tiles = {'', {name = 'furniture_chair_waitingroom_cushion.png', color = hex}},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_frame_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.375, -.5, -.375, .375, 0, .4375},
- {-.375, 0, .3125, .375, .5, .4375}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.375, -.5, -.375, .375, 0, .375},
- {-.375, 0, .375, .375, .5, .5}
- }
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:Sofa_'..name, {--collision_box needs fixing, only half size
- description = desc..' Sofa',
- drawtype = 'mesh',
- mesh = 'furniture_sofa.obj',
- tiles = {'furniture_sofa.png^[multiply:'..hex},
- paramtype = 'light',
- paramtype2 = 'colorfacedir',
- palette = 'furniture_frame_palette.png',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.375, -.5, -.375, 1.375, 0, .4375},
- {-.375, -.4375, .3125, 1.375, .4375, .5}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.375, -.5, -.375, .375, 0, .375},
- {-.375, 0, .375, .375, .5, .5}
- }
- },
- groups = {breakable=1},
- on_rightclick = furniture.right_click,
- on_punch = furniture.punch
- })
- minetest.register_node('furniture:cushion_half_'..name, {
- description = desc..' Half Cushion',
- drawtype = 'nodebox',
- tiles = {'furniture_cushion.png^[multiply:'..hex},
- paramtype = 'light',
- node_box = {
- type = 'fixed',
- fixed = {-.5, -.5, -.5, .5, 0, .5},
- },
- groups = {breakable=1, bouncy=25, fall_damage_add_percent=-25},
- })
- minetest.register_node('furniture:cushion_full_'..name, {
- description = desc..' Full Cushion',
- tiles = {'furniture_cushion.png^[multiply:'..hex},
- groups = {breakable=1, bouncy=50, fall_damage_add_percent=-50},
- })
- end
|