moreblocks.lua 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. ----ASTEROID
  2. stairsplus:register_all('asteroid', 'stone', 'asteroid:stone', {
  3. description='Asteroid Stone',
  4. groups={cracky = 2, not_in_creative_inventory=1},
  5. tiles={'asteroid_stone.png'},
  6. })
  7. stairsplus:register_all('asteroid', 'stone_brick', 'asteroid:stone_brick', {
  8. description='Asteroid Stone Brick',
  9. groups={cracky = 2, not_in_creative_inventory=1},
  10. tiles={'asteroid_stone_brick.png'},
  11. })
  12. ----EPIC
  13. stairsplus:register_all('epic', 'burnt_wood', 'epic:wood_ash', {
  14. description='Burnt Wood',
  15. groups = {choppy = 3, oddly_breakable_by_hand = 3, not_in_creative_inventory=1},
  16. tiles={'epic_wood_ash.png'},
  17. })
  18. stairsplus:register_all('epic', 'acacia_bark', 'epic:acacia_bark', {
  19. description='Acacia',
  20. groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
  21. tiles={'default_acacia_tree.png'},
  22. })
  23. stairsplus:register_all('epic', 'aspen_bark', 'epic:aspen_bark', {
  24. description='Aspen',
  25. groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
  26. tiles={'default_aspen_tree.png'},
  27. })
  28. stairsplus:register_all('epic', 'jungle_bark', 'epic:jungle_bark', {
  29. description='Jungle',
  30. groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
  31. tiles={'default_jungletree.png'},
  32. })
  33. stairsplus:register_all('epic', 'pine_bark', 'epic:pine_bark', {
  34. description='Pine',
  35. groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
  36. tiles={'default_pine_tree.png'},
  37. })
  38. stairsplus:register_all('epic', 'tree_bark', 'epic:tree_bark', {
  39. description='Tree',
  40. groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
  41. tiles={'default_tree.png'},
  42. })
  43. stairsplus:register_all('epic', 'wood_ash', 'epic:wood_ash', {
  44. description='Burnt wood',
  45. groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
  46. tiles={'epic_wood_ash.png'},
  47. })
  48. stairsplus:register_all('epic', 'tree_ash', 'epic:tree_ash', {
  49. description='Burnt tree',
  50. groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
  51. tiles={'epic_tree_ash_top.png', 'epic_tree_ash_side.png'},
  52. })
  53. ----CAVEREALSM
  54. stairsplus:register_all('caverealms', 'glow_amethyst', 'caverealms:glow_amethyst', {
  55. description='Glow Amethyst',
  56. groups={cracky = 2, not_in_creative_inventory=1},
  57. tiles={'caverealms_glow_amethyst.png'},
  58. use_texture_alpha = 'opaque',
  59. light_source = 10
  60. })
  61. stairsplus:register_all('caverealms', 'glow_crystal', 'caverealms:glow_crystal', {
  62. description='Glow Crystal',
  63. groups={cracky = 2, not_in_creative_inventory=1},
  64. tiles={'caverealms_glow_crystal.png'},
  65. use_texture_alpha = 'opaque',
  66. light_source = 10
  67. })
  68. stairsplus:register_all('caverealms', 'glow_emerald', 'caverealms:glow_emerald', {
  69. description='Glow Emerald',
  70. groups={cracky = 2, not_in_creative_inventory=1},
  71. tiles={'caverealms_glow_emerald.png'},
  72. use_texture_alpha = 'opaque',
  73. light_source = 10
  74. })
  75. stairsplus:register_all('caverealms', 'glow_ruby', 'caverealms:glow_ruby', {
  76. description='Glow Ruby',
  77. groups={cracky = 2, not_in_creative_inventory=1},
  78. tiles={'caverealms_glow_ruby.png'},
  79. use_texture_alpha = 'opaque',
  80. light_source = 10
  81. })
  82. --NETHER
  83. stairsplus:register_all('nether', 'basalt', 'nether:basalt', {
  84. description='Burnt tree',
  85. groups={cracky = 2, not_in_creative_inventory=1},
  86. tiles={'nether_basalt.png', 'nether_basalt_side.png'},
  87. })
  88. ----OCEAN
  89. stairsplus:register_all('ocean', 'prismarine', 'ocean:prismarine', {
  90. description='Prismarine',
  91. groups={cracky=1, not_in_creative_inventory=1},
  92. tiles={'prismarine.png'},
  93. })
  94. stairsplus:register_all('ocean', 'dark_prismarine', 'ocean:dark_prismarine', {
  95. description='Dark Prismarine',
  96. groups={cracky=1, not_in_creative_inventory=1},
  97. tiles={'prismarine_dark.png'},
  98. })
  99. stairsplus:register_all('ocean', 'prismarine_bricks', 'ocean:prismarine_bricks', {
  100. description='Prismarine Brick',
  101. groups={cracky=1, not_in_creative_inventory=1},
  102. tiles={'prismarine_bricks.png'},
  103. })