123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- minetest.register_node('hall:scorpion', {
- description = 'Scorpion Sculpture',
- drawtype = 'mesh',
- mesh = 'hall_scorpion.obj',
- tiles = {'spawn_quartz1.png'},
- paramtype2 = 'facedir',
- paramtype = 'light',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.6, -.5, -.6, .6, .4, .6}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.6, -.5, -.6, .6, .4, .6}
- }
- },
- groups = {cracky=3},
- })
- minetest.register_node('hall:cave_freak', {
- description = 'Cave Freak Sculpture',
- drawtype = 'mesh',
- mesh = 'hall_monster.obj',
- tiles = {'spawn_quartz1.png'},
- paramtype2 = 'facedir',
- paramtype = 'light',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.6, -.5, -.6, .6, .4, .6}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.6, -.5, -.6, .6, .4, .6}
- }
- },
- groups = {cracky=3},
- })
- minetest.register_node('hall:fairy', {
- description = 'Fairy Sculpture',
- drawtype = 'mesh',
- mesh = 'hall_fairy.obj',
- tiles = {'spawn_quartz1.png'},
- paramtype2 = 'facedir',
- paramtype = 'light',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.2, -.5, -.2, .2, .2, .2}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.2, -.5, -.2, .2, .2, .2}
- }
- },
- groups = {cracky=3},
- })
- minetest.register_node('hall:goblin', {
- description = 'Goblin Sculpture',
- drawtype = 'mesh',
- mesh = 'hall_goblin.obj',
- tiles = {'spawn_quartz1.png'},
- paramtype2 = 'facedir',
- paramtype = 'light',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.3, -.5, -.3, .3, .4, .3}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.3, -.5, -.3, .3, .4, .3}
- }
- },
- groups = {cracky=3},
- })
- minetest.register_node('hall:larva', {
- description = 'Nether Lava Sculpture',
- drawtype = 'mesh',
- mesh = 'hall_larva.obj',
- tiles = {'spawn_quartz1.png'},
- paramtype2 = 'facedir',
- paramtype = 'light',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.3, 0, -.3, .3, .4, .3}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.3, 0, -.3, .3, .4, .3}
- }
- },
- groups = {cracky=3},
- })
- minetest.register_node('hall:gnome', {
- description = 'Gnome Sculpture',
- drawtype = 'mesh',
- mesh = 'hall_gnome.obj',
- tiles = {'spawn_quartz1.png'},
- paramtype2 = 'facedir',
- paramtype = 'light',
- selection_box = {
- type = 'fixed',
- fixed = {
- {-.3, 0, -.3, .3, .4, .3}
- }
- },
- collision_box = {
- type = 'fixed',
- fixed = {
- {-.3, 0, -.3, .3, .4, .3}
- }
- },
- groups = {cracky=3},
- })
|