moreblocks.lua 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. light_source = 10
  59. })
  60. stairsplus:register_all('caverealms', 'glow_crystal', 'caverealms:glow_crystal', {
  61. description='Glow Crystal',
  62. groups={cracky = 2, not_in_creative_inventory=1},
  63. tiles={'caverealms_glow_crystal.png'},
  64. light_source = 10
  65. })
  66. stairsplus:register_all('caverealms', 'glow_emerald', 'caverealms:glow_emerald', {
  67. description='Glow Emerald',
  68. groups={cracky = 2, not_in_creative_inventory=1},
  69. tiles={'caverealms_glow_emerald.png'},
  70. light_source = 10
  71. })
  72. stairsplus:register_all('caverealms', 'glow_ruby', 'caverealms:glow_ruby', {
  73. description='Glow Ruby',
  74. groups={cracky = 2, not_in_creative_inventory=1},
  75. tiles={'caverealms_glow_ruby.png'},
  76. light_source = 10
  77. })
  78. --NETHER
  79. stairsplus:register_all('nether', 'basalt', 'nether:basalt', {
  80. description='Burnt tree',
  81. groups={cracky = 2, not_in_creative_inventory=1},
  82. tiles={'nether_basalt.png', 'nether_basalt_side.png'},
  83. })
  84. ----OCEAN
  85. stairsplus:register_all('ocean', 'prismarine', 'ocean:prismarine', {
  86. description='Prismarine',
  87. groups={cracky=1, not_in_creative_inventory=1},
  88. tiles={'prismarine.png'},
  89. })
  90. stairsplus:register_all('ocean', 'dark_prismarine', 'ocean:dark_prismarine', {
  91. description='Dark Prismarine',
  92. groups={cracky=1, not_in_creative_inventory=1},
  93. tiles={'prismarine_dark.png'},
  94. })
  95. stairsplus:register_all('ocean', 'prismarine_bricks', 'ocean:prismarine_bricks', {
  96. description='Prismarine Brick',
  97. groups={cracky=1, not_in_creative_inventory=1},
  98. tiles={'prismarine_bricks.png'},
  99. })