123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- minetest.register_node('furniture:physician_scale', {
- description = 'Physician\'s Scale',
- drawtype = 'mesh',
- mesh = 'furniture_physician_scale.obj',
- tiles = {'furniture_physician_scale.png'},
- use_texture_alpha = 'clip',
- paramtype = 'light',
- paramtype2 = 'facedir',
- selection_box = {
- type = 'fixed',
- fixed = {{-.4375, -.5, -.4375, .4375, -.375, .5},
- {-.375, -.375, .375, .375, 1.125, .5}}
- },
- collision_box = {
- type = 'fixed',
- fixed = {{-.4375, -.5, -.4375, .4375, -.375, .5},
- {-.375, -.375, .375, .375, 1.125, .5}}
- },
- groups = {breakable=1}
- })
- minetest.register_node('furniture:exam_table', {
- description = 'Exam Table',
- drawtype = 'mesh',
- mesh = 'furniture_exam_table.obj',
- tiles = {'furniture_exam_table.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- selection_box = {
- type = 'fixed',
- fixed = {{-1.125, -.5, -.375, .375, .375, .375},
- {-.4375, .375, -.4375, .46875, .5, .4375}}
- },
- collision_box = {
- type = 'fixed',
- fixed = {{-1.125, -.5, -.375, .375, .375, .375},
- {-.4375, .375, -.4375, .46875, .5, .4375}}
- },
- groups = {breakable=1, stash=1}
- })
- minetest.register_node('furniture:hospital_bed', {
- description = 'Hospital Bed',
- drawtype = 'mesh',
- mesh = 'furniture_hospital_bed.obj',
- tiles = {'furniture_hospital_bed.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- selection_box = {
- type = 'fixed',
- fixed = {{-.5, -.0625, -.5, .5, .125, 1.5}, --Bed
- {-.5625, -.0625, -.5625, .5625, .3125, -.5}, --Footboard
- {-.5625, -.0625, 1.5, .5625, .5, 1.5625}, --headboard
- {-.4375, -.5, -.3125, .4375, -.0625, 1.3125}} --base
- },
- collision_box = {
- type = 'fixed',
- fixed = {{-.5, -.0625, -.5, .5, .125, 1.5},
- {-.5625, -.0625, -.5625, .5625, .3125, -.5},
- {-.5625, -.0625, 1.5, .5625, .5, 1.5625}}
- },
- groups = {breakable=1}
- })
- minetest.register_node('furniture:ekg_machine', {
- description = 'EKG Machine',
- drawtype = 'mesh',
- mesh = 'furniture_ekg_machine.obj',
- tiles = {'furniture_ekg_machine.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- selection_box = {
- type = 'fixed',
- fixed = {{-.4375, -.5, -.375, .4375, .5, .375},
- {-.375, .5, .25, .375, 1.0625, .375}}
- },
- collision_box = {
- type = 'fixed',
- fixed = {{-.4375, -.5, -.375, .4375, .5, .375},
- {-.375, .5, .25, .375, 1.0625, .375}}
- },
- groups = {breakable=1}
- })
|