2021-05-29 16:12:33 +02:00
local S = minetest.get_translator ( minetest.get_current_modname ( ) )
2019-03-08 00:46:35 +01:00
2023-08-06 21:14:58 +02:00
mcl_walls.register_wall ( " mcl_walls:cobble " , S ( " Cobblestone Wall " ) , " mcl_core:cobble " , { " mcl_walls_cobble_wall_top.png " , " default_cobble.png " , " mcl_walls_cobble_wall_side.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 7 } )
mcl_walls.register_wall ( " mcl_walls:mossycobble " , S ( " Mossy Cobblestone Wall " ) , " mcl_core:mossycobble " , { " mcl_walls_cobble_mossy_wall_top.png " , " default_mossycobble.png " , " mcl_walls_cobble_mossy_wall_side.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 8 } )
mcl_walls.register_wall ( " mcl_walls:andesite " , S ( " Andesite Wall " ) , " mcl_core:andesite " , { " mcl_core_andesite.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 5 } )
mcl_walls.register_wall ( " mcl_walls:granite " , S ( " Granite Wall " ) , " mcl_core:granite " , { " mcl_core_granite.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 4 } )
mcl_walls.register_wall ( " mcl_walls:diorite " , S ( " Diorite Wall " ) , " mcl_core:diorite " , { " mcl_core_diorite.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 6 } )
mcl_walls.register_wall ( " mcl_walls:brick " , S ( " Brick Wall " ) , " mcl_core:brick_block " , { " default_brick.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 16 } )
mcl_walls.register_wall ( " mcl_walls:sandstone " , S ( " Sandstone Wall " ) , " mcl_core:sandstone " , { " mcl_core_sandstone_top.png " , " mcl_core_sandstone_bottom.png " , " mcl_core_sandstone_normal.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 9 } )
mcl_walls.register_wall ( " mcl_walls:redsandstone " , S ( " Red Sandstone Wall " ) , " mcl_core:redsandstone " , { " mcl_core_red_sandstone_top.png " , " mcl_core_red_sandstone_bottom.png " , " mcl_core_red_sandstone_carved.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 10 } )
2023-08-07 09:45:03 +02:00
mcl_walls.register_wall ( " mcl_walls:stonebrick " , S ( " Stone Brick Wall " ) , " mcl_core:stonebrick " , { " default_stone_brick.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 1 , stonecutter_stage = 1 } )
2023-08-06 21:14:58 +02:00
mcl_walls.register_wall ( " mcl_walls:stonebrickmossy " , S ( " Mossy Stone Brick Wall " ) , " mcl_core:stonebrickmossy " , { " mcl_core_stonebrick_mossy.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 3 } )
mcl_walls.register_wall ( " mcl_walls:prismarine " , S ( " Prismarine Wall " ) , " mcl_ocean:prismarine " , { { name = " mcl_ocean_prismarine_anim.png " , animation = { type = " vertical_frames " , aspect_w = 32 , aspect_h = 32 , length = 45.0 } } } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 11 } )
mcl_walls.register_wall ( " mcl_walls:endbricks " , S ( " End Stone Brick Wall " ) , " mcl_end:end_bricks " , { " mcl_end_end_bricks.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 20 } )
mcl_walls.register_wall ( " mcl_walls:netherbrick " , S ( " Nether Brick Wall " ) , " mcl_nether:nether_brick " , { " mcl_nether_nether_brick.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 17 } )
mcl_walls.register_wall ( " mcl_walls:rednetherbrick " , S ( " Red Nether Brick Wall " ) , " mcl_nether:red_nether_brick " , { " mcl_nether_red_nether_brick.png " } , " " , { pickaxey = 1 , material_stone = 1 , stonecutter_output = 18 } )
mcl_walls.register_wall ( " mcl_walls:mudbrick " , S ( " Mud Brick Wall " ) , " mcl_mud:mud_bricks " , { " mcl_mud_bricks.png " } , " " , { handy = 1 , pickaxey = 1 , material_stone = 1 , stonecutter_output = 30 } )