init.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. minetest.register_node('buildingblocks:blue_box', {
  2. description = 'Blue Box',
  3. tiles = {'bb_blue_box_top.png',
  4. 'bb_blue_box_top.png',
  5. 'bb_blue_box_side.png'},
  6. groups = {breakable=1},
  7. })
  8. minetest.register_node('buildingblocks:green_box', {
  9. description = 'Green Box',
  10. tiles = {'bb_green_box_top.png',
  11. 'bb_green_box_top.png',
  12. 'bb_green_box_side.png',},
  13. groups = {breakable=1},
  14. })
  15. minetest.register_node('buildingblocks:red_box', {
  16. description = 'Red Box',
  17. tiles = {'bb_red_box_top.png',
  18. 'bb_red_box_top.png',
  19. 'bb_red_box_side.png'},
  20. groups = {breakable=1},
  21. })
  22. minetest.register_node('buildingblocks:floor', {
  23. description = 'Grey Floor',
  24. tiles = {'bb_floor.png'},
  25. groups = {breakable=1},
  26. })
  27. minetest.register_node('buildingblocks:floor_two', {
  28. description = 'Red Tile Floor',
  29. tiles = {'bb_floor_two.png'},
  30. groups = {breakable=1},
  31. })
  32. minetest.register_node('buildingblocks:floor_three', {
  33. description = 'Beige Floor',
  34. tiles = {'bb_floor_three.png'},
  35. groups = {breakable=1},
  36. })
  37. minetest.register_node('buildingblocks:floor_four', {
  38. description = 'Tan Floor',
  39. tiles = {'bb_floor_four.png'},
  40. groups = {breakable=1},
  41. })
  42. minetest.register_node('buildingblocks:floor_five', {
  43. description = 'Green Floor',
  44. tiles = {'bb_floor_fifth.png'},
  45. groups = {breakable=1},
  46. })
  47. minetest.register_node('buildingblocks:floor_six', {
  48. description = 'Checkerboard Floor',
  49. tiles = {'bb_floor_six.png'},
  50. groups = {breakable=1},
  51. })
  52. minetest.register_node('buildingblocks:floor_seven', {
  53. description = 'Loopy Floor',
  54. tiles = {'bb_floor_seven.png'},
  55. groups = {breakable=1},
  56. })
  57. minetest.register_node('buildingblocks:wall', {
  58. description = 'Blue Alien Wall',
  59. tiles = {'bb_wall_top.png',
  60. 'bb_wall_top.png',
  61. 'bb_wall.png'},
  62. groups = {breakable=1},
  63. })
  64. minetest.register_node('buildingblocks:caution_block', {
  65. description = 'Caution Block',
  66. tiles = {{name = 'bb_caution.png', align_style='world', scale=4}},
  67. groups = {breakable=1},
  68. })
  69. minetest.register_node('buildingblocks:vent', {
  70. description = 'Vent Block',
  71. tiles = {'bb_vent_top.png'},
  72. groups = {breakable=1},
  73. })