123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- minetest.register_node('furniture:stool_short', {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- 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 = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + 0
- furniture.sit(pos, node, clicker, pointed_thing, false)
- return itemstack
- end
- })
- minetest.register_node('furniture:stool_tall', {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- 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 = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + .5
- furniture.sit(pos, node, clicker, pointed_thing, false)
- return itemstack
- end
- })
- minetest.register_node('furniture:chair', {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- 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 = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + 0
- furniture.sit(pos, node, clicker, pointed_thing, true)
- return itemstack
- end
- })
- minetest.register_node('furniture:bench', {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- 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 = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + 0
- furniture.sit(pos, node, clicker, pointed_thing, false)
- return itemstack
- end,
- after_place_node = function(pos, placer, itemstack)
- if not epic.space_to_side(pos) then
- minetest.remove_node(pos)
- return itemstack
- end
- end,
- after_dig_node = function(pos, oldnode, oldmetadata, digger)
- epic.remove_side_node(pos, oldnode)
- end,
- on_rotate = function(pos, node)
- return false
- end,
- })
- minetest.register_node('furniture:bench_with_back', {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- description = 'Bench with Back',
- drawtype = 'mesh',
- mesh = 'furniture_bench_with_back.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, .45},
- {-.375, 0, .275, 1.375, .5, .375}}
- },
- collision_box = {
- type = 'fixed',
- fixed = {{-.375, -.5, -.375, 1.375, 0, .45},
- {-.375, 0, .275, 1.375, .5, .375}}
- },
- groups = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + 0
- furniture.sit(pos, node, clicker, pointed_thing, true)
- return itemstack
- end,
- after_place_node = function(pos, placer, itemstack)
- if not epic.space_to_side(pos) then
- minetest.remove_node(pos)
- return itemstack
- end
- end,
- after_dig_node = function(pos, oldnode, oldmetadata, digger)
- epic.remove_side_node(pos, oldnode)
- end,
- on_rotate = function(pos, node)
- return false
- end,
- })
- minetest.register_node('furniture:bench_picnic', {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- 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, .45},
- {-.375, 0, .275, 1.375, .5, .375}}
- },
- collision_box = {
- type = 'fixed',
- fixed = {{-.375, -.5, -.375, 1.375, 0, .45},
- {-.375, 0, .275, 1.375, .5, .375}}
- },
- groups = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + 0
- furniture.sit(pos, node, clicker, pointed_thing, true)
- return itemstack
- end,
- after_place_node = function(pos, placer, itemstack)
- if not epic.space_to_side(pos) then
- minetest.remove_node(pos)
- return itemstack
- end
- end,
- after_dig_node = function(pos, oldnode, oldmetadata, digger)
- epic.remove_side_node(pos, oldnode)
- end,
- on_rotate = function(pos, node)
- return false
- end,
- })
- ---Cushioned items. Yay. :P
- local dye_table = dye.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, {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- 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 = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + 0
- furniture.sit(pos, node, clicker, pointed_thing, false)
- return itemstack
- end
- })
- minetest.register_node('furniture:stool_tall_'..name, {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- 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 = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + .5
- furniture.sit(pos, node, clicker, pointed_thing, false)
- return itemstack
- end
- })
- minetest.register_node('furniture:chair_'..name, {
- _doc_items_crafting = 'This is crafted in the Woodworking Station.',
- 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 = {oddly_breakable_by_hand = 2, choppy=3, stainable=1},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + 0
- furniture.sit(pos, node, clicker, pointed_thing, true)
- return itemstack
- end
- })
- minetest.register_node('furniture:cushion_half_'..name, {
- _doc_items_crafting = 'This is crafted in the Sewing Station.',
- 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 = {oddly_breakable_by_hand = 2, snappy=3, bouncy=50},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + 0
- furniture.sit(pos, node, clicker, pointed_thing, false)
- return itemstack
- end
- })
- minetest.register_node('furniture:cushion_full_'..name, {
- _doc_items_crafting = 'This is crafted in the Sewing Station.',
- description = desc..' Full Cushion',
- tiles = {'furniture_cushion.png^[multiply:'..hex},
- groups = {oddly_breakable_by_hand = 2, snappy=3, bouncy=50},
- on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
- pos.y = pos.y + .5
- furniture.sit(pos, node, clicker, pointed_thing, false)
- return itemstack
- end
- })
- end
|