From 13404e8736c7c9afd199dbe36f19768bf4ee6003 Mon Sep 17 00:00:00 2001 From: Kenny van Vulpen Date: Sat, 23 Jul 2022 00:04:54 +0200 Subject: [PATCH] Update to 1.19.10 --- .../BlockEntities/BeaconBlockEntity.cs | 2 +- .../Net/Bedrock/BedrockClientPacketHandler.cs | 23 +- src/Alex/Resources/blockmap.json | 40166 ++++++++++------ submodules/MiNET | 2 +- 4 files changed, 26280 insertions(+), 13913 deletions(-) diff --git a/src/Alex/Entities/BlockEntities/BeaconBlockEntity.cs b/src/Alex/Entities/BlockEntities/BeaconBlockEntity.cs index f156e9b17..6bf276ca8 100644 --- a/src/Alex/Entities/BlockEntities/BeaconBlockEntity.cs +++ b/src/Alex/Entities/BlockEntities/BeaconBlockEntity.cs @@ -111,7 +111,7 @@ protected override void ReadFrom(NbtCompound compound) } if (compound.TryGet("Secondary", out var secondary) - || compound.TryGet("secondary", out primary)) + || compound.TryGet("secondary", out secondary)) { if (secondary.Value >= 0) { diff --git a/src/Alex/Net/Bedrock/BedrockClientPacketHandler.cs b/src/Alex/Net/Bedrock/BedrockClientPacketHandler.cs index e996daa0a..973d9b3be 100755 --- a/src/Alex/Net/Bedrock/BedrockClientPacketHandler.cs +++ b/src/Alex/Net/Bedrock/BedrockClientPacketHandler.cs @@ -240,12 +240,12 @@ public void HandleMcpeSetTime(McpeSetTime message) Client.ChangeDimensionResetEvent.Set(); } - + public void HandleMcpeStartGame(McpeStartGame message) { Log.Warn($"Experimental gameplay override={message.levelSettings.experimentalGameplayOverride} Experiments={message.levelSettings.experiments.Count} BaseGameVersion={message.levelSettings.gameVersion}"); - if (message.levelSettings.gameVersion.Trim().StartsWith("1.17")) + if ( message.levelSettings.gameVersion.Trim().StartsWith("1.17")) { ChunkProcessor.WorldSettings = new WorldSettings(256, 0); } @@ -407,9 +407,10 @@ public void HandleMcpeAddPlayer(McpeAddPlayer message) remotePlayer.HandleMetadata(message.metadata); } - UpdateEntityAdventureFlags( - remotePlayer, message.flags, message.actionPermissions, message.commandPermission, - message.permissionLevel, message.customStoredPermissions); + //TODO: Fix adventure flags + //UpdateEntityAdventureFlags( + // remotePlayer, message.flags, message.actionPermissions, message.commandPermission, + // message.permissionLevel, message.customStoredPermissions); Client.World.SpawnEntity(remotePlayer); @@ -704,9 +705,17 @@ public void HandleMcpeAvailableEntityIdentifiers(McpeAvailableEntityIdentifiers { foreach (NbtCompound tag in ids.ToArray()) { - if (tag.TryGet("id", out NbtString id) && tag.TryGet("rid", out NbtInt realId)) + if (tag.TryGet("id", out NbtString id) && tag.TryGet("rid", out var realId)) { - _entityIdentifiers[id.Value] = realId.Value; + int identifier = 0; + + if (realId is NbtInt nbtInt) + identifier = nbtInt.Value; + + if (realId is NbtByte nbtByte) + identifier = nbtByte.Value; + + _entityIdentifiers[id.Value] = identifier; if (LoggingConstants.LogServerEntityDefinitions) #pragma warning disable CS0162 diff --git a/src/Alex/Resources/blockmap.json b/src/Alex/Resources/blockmap.json index c5c9ce9f3..707af2a88 100644 --- a/src/Alex/Resources/blockmap.json +++ b/src/Alex/Resources/blockmap.json @@ -68,6 +68,12 @@ "stone_type": "andesite_smooth" } }, + "minecraft:grass_block[snowy=true]": { + "bedrock_identifier": "minecraft:grass", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true + }, "minecraft:grass_block[snowy=false]": { "bedrock_identifier": "minecraft:grass", "block_hardness": 0.6, @@ -92,6 +98,12 @@ "dirt_type": "coarse" } }, + "minecraft:podzol[snowy=true]": { + "bedrock_identifier": "minecraft:podzol", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, "minecraft:podzol[snowy=false]": { "bedrock_identifier": "minecraft:podzol", "block_hardness": 0.5, @@ -158,6 +170,12 @@ "wood_type": "dark_oak" } }, + "minecraft:mangrove_planks": { + "bedrock_identifier": "minecraft:mangrove_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, "minecraft:oak_sapling[stage=0]": { "bedrock_identifier": "minecraft:sapling", "block_hardness": 0.0, @@ -302,6 +320,486 @@ "sapling_type": "dark_oak" } }, + "minecraft:mangrove_propagule[age=0,hanging=true,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=0,hanging=true,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=0,hanging=true,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=0,hanging=true,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=0,hanging=false,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=0,hanging=false,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=0,hanging=false,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=0,hanging=false,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=1,hanging=true,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=1,hanging=true,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=1,hanging=true,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=1,hanging=true,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=1,hanging=false,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=1,hanging=false,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=1,hanging=false,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=1,hanging=false,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=2,hanging=true,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=2,hanging=true,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=2,hanging=true,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=2,hanging=true,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=2,hanging=false,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=2,hanging=false,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=2,hanging=false,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=2,hanging=false,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=3,hanging=true,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=3,hanging=true,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=3,hanging=true,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=3,hanging=true,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=3,hanging=false,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=3,hanging=false,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=3,hanging=false,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=3,hanging=false,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=4,hanging=true,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=4,hanging=true,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=4,hanging=true,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=4,hanging=true,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": true, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=4,hanging=false,stage=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=4,hanging=false,stage=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 0 + } + }, + "minecraft:mangrove_propagule[age=4,hanging=false,stage=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, + "minecraft:mangrove_propagule[age=4,hanging=false,stage=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "hanging": false, + "propagule_stage": 1 + } + }, "minecraft:bedrock": { "bedrock_identifier": "minecraft:bedrock", "block_hardness": -1.0, @@ -877,6 +1375,63 @@ "new_log_type": "dark_oak" } }, + "minecraft:mangrove_log[axis=x]": { + "bedrock_identifier": "minecraft:mangrove_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:mangrove_log[axis=y]": { + "bedrock_identifier": "minecraft:mangrove_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:mangrove_log[axis=z]": { + "bedrock_identifier": "minecraft:mangrove_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:mangrove_roots[waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_roots", + "block_hardness": 0.7, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:mangrove_roots[waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_roots", + "block_hardness": 0.7, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:muddy_mangrove_roots[axis=x]": { + "bedrock_identifier": "minecraft:muddy_mangrove_roots", + "block_hardness": 0.7, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:muddy_mangrove_roots[axis=y]": { + "bedrock_identifier": "minecraft:muddy_mangrove_roots", + "block_hardness": 0.7, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:muddy_mangrove_roots[axis=z]": { + "bedrock_identifier": "minecraft:muddy_mangrove_roots", + "block_hardness": 0.7, + "collision_index": 1, + "can_break_with_hand": true + }, "minecraft:stripped_spruce_log[axis=x]": { "bedrock_identifier": "minecraft:stripped_spruce_log", "block_hardness": 2.0, @@ -1039,6 +1594,33 @@ "pillar_axis": "z" } }, + "minecraft:stripped_mangrove_log[axis=x]": { + "bedrock_identifier": "minecraft:stripped_mangrove_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_mangrove_log[axis=y]": { + "bedrock_identifier": "minecraft:stripped_mangrove_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_mangrove_log[axis=z]": { + "bedrock_identifier": "minecraft:stripped_mangrove_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, "minecraft:oak_wood[axis=x]": { "bedrock_identifier": "minecraft:wood", "block_hardness": 2.0, @@ -1237,6 +1819,36 @@ "wood_type": "dark_oak" } }, + "minecraft:mangrove_wood[axis=x]": { + "bedrock_identifier": "minecraft:mangrove_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x", + "stripped_bit": false + } + }, + "minecraft:mangrove_wood[axis=y]": { + "bedrock_identifier": "minecraft:mangrove_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y", + "stripped_bit": false + } + }, + "minecraft:mangrove_wood[axis=z]": { + "bedrock_identifier": "minecraft:mangrove_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z", + "stripped_bit": false + } + }, "minecraft:stripped_oak_wood[axis=x]": { "bedrock_identifier": "minecraft:wood", "block_hardness": 2.0, @@ -1435,8244 +2047,9895 @@ "wood_type": "dark_oak" } }, - "minecraft:oak_leaves[distance=1,persistent=true]": { + "minecraft:stripped_mangrove_wood[axis=x]": { + "bedrock_identifier": "minecraft:stripped_mangrove_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_mangrove_wood[axis=y]": { + "bedrock_identifier": "minecraft:stripped_mangrove_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_mangrove_wood[axis=z]": { + "bedrock_identifier": "minecraft:stripped_mangrove_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:oak_leaves[distance=1,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", - "persistent_bit": false, - "update_bit": true + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=1,persistent=false]": { + "minecraft:oak_leaves[distance=1,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=2,persistent=true]": { + "minecraft:oak_leaves[distance=1,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=2,persistent=false]": { + "minecraft:oak_leaves[distance=1,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=3,persistent=true]": { + "minecraft:oak_leaves[distance=2,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=3,persistent=false]": { + "minecraft:oak_leaves[distance=2,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=4,persistent=true]": { + "minecraft:oak_leaves[distance=2,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=4,persistent=false]": { + "minecraft:oak_leaves[distance=2,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=5,persistent=true]": { + "minecraft:oak_leaves[distance=3,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=5,persistent=false]": { + "minecraft:oak_leaves[distance=3,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=6,persistent=true]": { + "minecraft:oak_leaves[distance=3,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=6,persistent=false]": { + "minecraft:oak_leaves[distance=3,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=7,persistent=true]": { + "minecraft:oak_leaves[distance=4,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:oak_leaves[distance=7,persistent=false]": { + "minecraft:oak_leaves[distance=4,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "oak", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=1,persistent=true]": { + "minecraft:oak_leaves[distance=4,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=1,persistent=false]": { + "minecraft:oak_leaves[distance=4,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=2,persistent=true]": { + "minecraft:oak_leaves[distance=5,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=2,persistent=false]": { + "minecraft:oak_leaves[distance=5,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=3,persistent=true]": { + "minecraft:oak_leaves[distance=5,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=3,persistent=false]": { + "minecraft:oak_leaves[distance=5,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=4,persistent=true]": { + "minecraft:oak_leaves[distance=6,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=4,persistent=false]": { + "minecraft:oak_leaves[distance=6,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=5,persistent=true]": { + "minecraft:oak_leaves[distance=6,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=5,persistent=false]": { + "minecraft:oak_leaves[distance=6,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=6,persistent=true]": { + "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=6,persistent=false]": { + "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=7,persistent=true]": { + "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:spruce_leaves[distance=7,persistent=false]": { + "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "spruce", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "oak" } }, - "minecraft:birch_leaves[distance=1,persistent=true]": { + "minecraft:spruce_leaves[distance=1,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=1,persistent=false]": { + "minecraft:spruce_leaves[distance=1,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=2,persistent=true]": { + "minecraft:spruce_leaves[distance=1,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=2,persistent=false]": { + "minecraft:spruce_leaves[distance=1,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=3,persistent=true]": { + "minecraft:spruce_leaves[distance=2,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=3,persistent=false]": { + "minecraft:spruce_leaves[distance=2,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=4,persistent=true]": { + "minecraft:spruce_leaves[distance=2,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=4,persistent=false]": { + "minecraft:spruce_leaves[distance=2,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=5,persistent=true]": { + "minecraft:spruce_leaves[distance=3,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=5,persistent=false]": { + "minecraft:spruce_leaves[distance=3,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=6,persistent=true]": { + "minecraft:spruce_leaves[distance=3,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=6,persistent=false]": { + "minecraft:spruce_leaves[distance=3,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=7,persistent=true]": { + "minecraft:spruce_leaves[distance=4,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:birch_leaves[distance=7,persistent=false]": { + "minecraft:spruce_leaves[distance=4,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "birch", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=1,persistent=true]": { + "minecraft:spruce_leaves[distance=4,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=1,persistent=false]": { + "minecraft:spruce_leaves[distance=4,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=2,persistent=true]": { + "minecraft:spruce_leaves[distance=5,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=2,persistent=false]": { + "minecraft:spruce_leaves[distance=5,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=3,persistent=true]": { + "minecraft:spruce_leaves[distance=5,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=3,persistent=false]": { + "minecraft:spruce_leaves[distance=5,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=4,persistent=true]": { + "minecraft:spruce_leaves[distance=6,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=4,persistent=false]": { + "minecraft:spruce_leaves[distance=6,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=5,persistent=true]": { + "minecraft:spruce_leaves[distance=6,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=5,persistent=false]": { + "minecraft:spruce_leaves[distance=6,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=6,persistent=true]": { + "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=6,persistent=false]": { + "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=7,persistent=true]": { + "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=true]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:jungle_leaves[distance=7,persistent=false]": { + "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=false]": { "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "old_leaf_type": "jungle", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "spruce" } }, - "minecraft:acacia_leaves[distance=1,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=1,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=2,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=2,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=3,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=3,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=4,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=4,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=5,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=5,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=6,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=6,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=7,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:acacia_leaves[distance=7,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "acacia", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=1,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=1,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=2,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=2,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=3,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=3,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=4,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=4,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=5,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=5,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=6,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=6,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=7,persistent=true]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:dark_oak_leaves[distance=7,persistent=false]": { - "bedrock_identifier": "minecraft:leaves2", + "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "new_leaf_type": "dark_oak", "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "birch" } }, - "minecraft:azalea_leaves[distance=1,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=1,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=2,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=2,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=3,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=3,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=4,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=4,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=5,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=5,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=6,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=6,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=7,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:azalea_leaves[distance=7,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves", + "minecraft:jungle_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=1,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=1,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=2,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=2,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=3,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=3,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=4,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=4,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=5,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=5,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=6,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": true, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=6,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": false, - "update_bit": false + "persistent_bit": true, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=7,persistent=true]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "persistent_bit": true, - "update_bit": false + "persistent_bit": false, + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:flowering_azalea_leaves[distance=7,persistent=false]": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves", "block_hardness": 0.2, "collision_index": 1, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { "persistent_bit": false, - "update_bit": false + "update_bit": false, + "old_leaf_type": "jungle" } }, - "minecraft:sponge": { - "bedrock_identifier": "minecraft:sponge", - "block_hardness": 0.6, + "minecraft:acacia_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "sponge_type": "dry" + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:wet_sponge": { - "bedrock_identifier": "minecraft:sponge", - "block_hardness": 0.6, + "minecraft:acacia_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "sponge_type": "wet" + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:glass": { - "bedrock_identifier": "minecraft:glass", - "block_hardness": 0.3, + "minecraft:acacia_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "can_break_with_hand": true + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:lapis_ore": { - "bedrock_identifier": "minecraft:lapis_ore", - "block_hardness": 3.0, + "minecraft:acacia_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "can_break_with_hand": false + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:deepslate_lapis_ore": { - "bedrock_identifier": "minecraft:deepslate_lapis_ore", - "block_hardness": 4.5, + "minecraft:acacia_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "can_break_with_hand": false + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:lapis_block": { - "bedrock_identifier": "minecraft:lapis_block", - "block_hardness": 3.0, + "minecraft:acacia_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "can_break_with_hand": false + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:dispenser[facing=north,triggered=true]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2, - "triggered_bit": true + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=north,triggered=false]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2, - "triggered_bit": false + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=east,triggered=true]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5, - "triggered_bit": true + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=east,triggered=false]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5, - "triggered_bit": false + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=south,triggered=true]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3, - "triggered_bit": true + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=south,triggered=false]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3, - "triggered_bit": false + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=west,triggered=true]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4, - "triggered_bit": true + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=west,triggered=false]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4, - "triggered_bit": false + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=up,triggered=true]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1, - "triggered_bit": true + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=up,triggered=false]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1, - "triggered_bit": false + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=down,triggered=true]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0, - "triggered_bit": true + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:dispenser[facing=down,triggered=false]": { - "bedrock_identifier": "minecraft:dispenser", - "block_hardness": 3.5, + "minecraft:acacia_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0, - "triggered_bit": false + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:sandstone": { - "bedrock_identifier": "minecraft:sandstone", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "sand_stone_type": "default" + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:chiseled_sandstone": { - "bedrock_identifier": "minecraft:sandstone", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "sand_stone_type": "heiroglyphs" + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:cut_sandstone": { - "bedrock_identifier": "minecraft:sandstone", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, - "can_break_with_hand": false, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "sand_stone_type": "cut" + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" } }, - "minecraft:note_block[instrument=harp,note=0,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 0 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:note_block[instrument=harp,note=0,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 0 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:note_block[instrument=harp,note=1,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 1 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:note_block[instrument=harp,note=1,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 1 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:note_block[instrument=harp,note=2,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 2 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:note_block[instrument=harp,note=2,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 2 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:note_block[instrument=harp,note=3,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 3 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "acacia" + } }, - "minecraft:note_block[instrument=harp,note=3,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 3 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=4,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 4 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=4,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 4 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=5,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 5 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=5,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 5 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=6,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 6 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=6,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 6 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=7,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 7 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=7,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 7 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=8,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 8 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=8,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 8 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=9,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 9 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=9,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 9 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=10,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 10 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=10,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 10 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=11,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 11 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=11,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 11 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=12,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 12 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=12,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 12 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=13,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 13 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=13,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 13 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=14,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 14 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=14,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 14 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=15,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 15 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=15,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 15 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=16,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 16 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=16,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 16 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=17,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:leaves2", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 17 - }, - "minecraft:note_block[instrument=harp,note=17,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 17 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false, + "new_leaf_type": "dark_oak" + } }, - "minecraft:note_block[instrument=harp,note=18,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 18 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=18,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 18 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=19,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 19 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=19,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 19 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=20,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 20 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=20,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 20 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=21,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 21 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=21,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 21 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=22,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 22 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=22,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 22 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=23,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 23 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=23,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 23 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=24,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 24 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=harp,note=24,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 24 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=0,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 0 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=0,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 0 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=1,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 1 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=1,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 1 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=2,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 2 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=2,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 2 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=3,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 3 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=3,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 3 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=4,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 4 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=4,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 4 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=5,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 5 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=5,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 5 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=6,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 6 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=6,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:mangrove_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 6 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=7,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 7 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=7,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 7 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=8,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 8 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=8,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 8 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=9,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 9 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=9,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 9 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=10,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 10 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=10,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 10 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=11,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 11 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=11,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 11 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=12,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 12 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=12,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 12 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=13,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 13 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=13,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 13 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=14,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 14 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=14,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 14 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=15,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 15 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=15,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 15 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=16,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 16 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=16,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 16 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=17,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 17 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=17,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 17 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=18,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 18 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=18,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 18 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=19,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 19 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=19,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 19 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=20,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 20 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=20,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:azalea_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 20 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=21,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 21 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=21,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 21 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=22,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 22 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=22,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 22 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=23,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 23 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=23,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 23 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=24,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 24 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=basedrum,note=24,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 24 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=0,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 0 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=0,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 0 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=1,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 1 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=1,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 1 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=2,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 2 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=2,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 2 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=3,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 3 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=3,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 3 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=4,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 4 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=4,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 4 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=5,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 5 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=5,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 5 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=6,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 6 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=6,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 6 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=7,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 7 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=7,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 7 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=8,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 8 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=8,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 8 + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=9,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 9 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=9,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:flowering_azalea_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "block_hardness": 0.2, "collision_index": 1, + "piston_behavior": "destroy", "can_break_with_hand": true, - "note_pitch": 9 + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } }, - "minecraft:note_block[instrument=snare,note=10,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:sponge": { + "bedrock_identifier": "minecraft:sponge", + "block_hardness": 0.6, "collision_index": 1, "can_break_with_hand": true, - "note_pitch": 10 + "bedrock_states": { + "sponge_type": "dry" + } }, - "minecraft:note_block[instrument=snare,note=10,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:wet_sponge": { + "bedrock_identifier": "minecraft:sponge", + "block_hardness": 0.6, "collision_index": 1, "can_break_with_hand": true, - "note_pitch": 10 + "bedrock_states": { + "sponge_type": "wet" + } }, - "minecraft:note_block[instrument=snare,note=11,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:glass": { + "bedrock_identifier": "minecraft:glass", + "block_hardness": 0.3, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 11 + "can_break_with_hand": true }, - "minecraft:note_block[instrument=snare,note=11,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:lapis_ore": { + "bedrock_identifier": "minecraft:lapis_ore", + "block_hardness": 3.0, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 11 + "can_break_with_hand": false }, - "minecraft:note_block[instrument=snare,note=12,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:deepslate_lapis_ore": { + "bedrock_identifier": "minecraft:deepslate_lapis_ore", + "block_hardness": 4.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 12 + "can_break_with_hand": false }, - "minecraft:note_block[instrument=snare,note=12,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:lapis_block": { + "bedrock_identifier": "minecraft:lapis_block", + "block_hardness": 3.0, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 12 + "can_break_with_hand": false }, - "minecraft:note_block[instrument=snare,note=13,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=north,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 13 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2, + "triggered_bit": true + } }, - "minecraft:note_block[instrument=snare,note=13,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=north,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 13 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2, + "triggered_bit": false + } }, - "minecraft:note_block[instrument=snare,note=14,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=east,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 14 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5, + "triggered_bit": true + } }, - "minecraft:note_block[instrument=snare,note=14,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=east,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 14 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5, + "triggered_bit": false + } }, - "minecraft:note_block[instrument=snare,note=15,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=south,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 15 - }, - "minecraft:note_block[instrument=snare,note=15,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 15 - }, - "minecraft:note_block[instrument=snare,note=16,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 16 - }, - "minecraft:note_block[instrument=snare,note=16,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 16 - }, - "minecraft:note_block[instrument=snare,note=17,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 17 - }, - "minecraft:note_block[instrument=snare,note=17,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 17 - }, - "minecraft:note_block[instrument=snare,note=18,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 18 - }, - "minecraft:note_block[instrument=snare,note=18,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 18 - }, - "minecraft:note_block[instrument=snare,note=19,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 19 - }, - "minecraft:note_block[instrument=snare,note=19,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 19 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3, + "triggered_bit": true + } }, - "minecraft:note_block[instrument=snare,note=20,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=south,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 20 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3, + "triggered_bit": false + } }, - "minecraft:note_block[instrument=snare,note=20,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=west,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 20 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4, + "triggered_bit": true + } }, - "minecraft:note_block[instrument=snare,note=21,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=west,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 21 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4, + "triggered_bit": false + } }, - "minecraft:note_block[instrument=snare,note=21,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=up,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 21 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1, + "triggered_bit": true + } }, - "minecraft:note_block[instrument=snare,note=22,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=up,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 22 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1, + "triggered_bit": false + } }, - "minecraft:note_block[instrument=snare,note=22,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=down,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 22 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "triggered_bit": true + } }, - "minecraft:note_block[instrument=snare,note=23,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", - "block_hardness": 0.8, + "minecraft:dispenser[facing=down,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 23 + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "triggered_bit": false + } }, - "minecraft:note_block[instrument=snare,note=23,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", + "minecraft:sandstone": { + "bedrock_identifier": "minecraft:sandstone", "block_hardness": 0.8, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 23 + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "default" + } }, - "minecraft:note_block[instrument=snare,note=24,powered=true]": { - "bedrock_identifier": "minecraft:noteblock", + "minecraft:chiseled_sandstone": { + "bedrock_identifier": "minecraft:sandstone", "block_hardness": 0.8, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 24 + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "heiroglyphs" + } }, - "minecraft:note_block[instrument=snare,note=24,powered=false]": { - "bedrock_identifier": "minecraft:noteblock", + "minecraft:cut_sandstone": { + "bedrock_identifier": "minecraft:sandstone", "block_hardness": 0.8, "collision_index": 1, - "can_break_with_hand": true, - "note_pitch": 24 + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "cut" + } }, - "minecraft:note_block[instrument=hat,note=0,powered=true]": { + "minecraft:note_block[instrument=harp,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=hat,note=0,powered=false]": { + "minecraft:note_block[instrument=harp,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=hat,note=1,powered=true]": { + "minecraft:note_block[instrument=harp,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=hat,note=1,powered=false]": { + "minecraft:note_block[instrument=harp,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=hat,note=2,powered=true]": { + "minecraft:note_block[instrument=harp,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=hat,note=2,powered=false]": { + "minecraft:note_block[instrument=harp,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=hat,note=3,powered=true]": { + "minecraft:note_block[instrument=harp,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=hat,note=3,powered=false]": { + "minecraft:note_block[instrument=harp,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=hat,note=4,powered=true]": { + "minecraft:note_block[instrument=harp,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=hat,note=4,powered=false]": { + "minecraft:note_block[instrument=harp,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=hat,note=5,powered=true]": { + "minecraft:note_block[instrument=harp,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=hat,note=5,powered=false]": { + "minecraft:note_block[instrument=harp,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=hat,note=6,powered=true]": { + "minecraft:note_block[instrument=harp,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=hat,note=6,powered=false]": { + "minecraft:note_block[instrument=harp,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=hat,note=7,powered=true]": { + "minecraft:note_block[instrument=harp,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=hat,note=7,powered=false]": { + "minecraft:note_block[instrument=harp,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=hat,note=8,powered=true]": { + "minecraft:note_block[instrument=harp,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=hat,note=8,powered=false]": { + "minecraft:note_block[instrument=harp,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=hat,note=9,powered=true]": { + "minecraft:note_block[instrument=harp,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=hat,note=9,powered=false]": { + "minecraft:note_block[instrument=harp,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=hat,note=10,powered=true]": { + "minecraft:note_block[instrument=harp,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=hat,note=10,powered=false]": { + "minecraft:note_block[instrument=harp,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=hat,note=11,powered=true]": { + "minecraft:note_block[instrument=harp,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=hat,note=11,powered=false]": { + "minecraft:note_block[instrument=harp,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=hat,note=12,powered=true]": { + "minecraft:note_block[instrument=harp,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=hat,note=12,powered=false]": { + "minecraft:note_block[instrument=harp,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=hat,note=13,powered=true]": { + "minecraft:note_block[instrument=harp,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=hat,note=13,powered=false]": { + "minecraft:note_block[instrument=harp,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=hat,note=14,powered=true]": { + "minecraft:note_block[instrument=harp,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=hat,note=14,powered=false]": { + "minecraft:note_block[instrument=harp,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=hat,note=15,powered=true]": { + "minecraft:note_block[instrument=harp,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=hat,note=15,powered=false]": { + "minecraft:note_block[instrument=harp,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=hat,note=16,powered=true]": { + "minecraft:note_block[instrument=harp,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=hat,note=16,powered=false]": { + "minecraft:note_block[instrument=harp,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=hat,note=17,powered=true]": { + "minecraft:note_block[instrument=harp,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=hat,note=17,powered=false]": { + "minecraft:note_block[instrument=harp,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=hat,note=18,powered=true]": { + "minecraft:note_block[instrument=harp,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=hat,note=18,powered=false]": { + "minecraft:note_block[instrument=harp,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=hat,note=19,powered=true]": { + "minecraft:note_block[instrument=harp,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=hat,note=19,powered=false]": { + "minecraft:note_block[instrument=harp,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=hat,note=20,powered=true]": { + "minecraft:note_block[instrument=harp,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=hat,note=20,powered=false]": { + "minecraft:note_block[instrument=harp,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=hat,note=21,powered=true]": { + "minecraft:note_block[instrument=harp,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=hat,note=21,powered=false]": { + "minecraft:note_block[instrument=harp,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=hat,note=22,powered=true]": { + "minecraft:note_block[instrument=harp,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=hat,note=22,powered=false]": { + "minecraft:note_block[instrument=harp,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=hat,note=23,powered=true]": { + "minecraft:note_block[instrument=harp,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=hat,note=23,powered=false]": { + "minecraft:note_block[instrument=harp,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=hat,note=24,powered=true]": { + "minecraft:note_block[instrument=harp,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=hat,note=24,powered=false]": { + "minecraft:note_block[instrument=harp,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=bass,note=0,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=bass,note=0,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=bass,note=1,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=bass,note=1,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=bass,note=2,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=bass,note=2,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=bass,note=3,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=bass,note=3,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=bass,note=4,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=bass,note=4,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=bass,note=5,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=bass,note=5,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=bass,note=6,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=bass,note=6,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=bass,note=7,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=bass,note=7,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=bass,note=8,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=bass,note=8,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=bass,note=9,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=bass,note=9,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=bass,note=10,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=bass,note=10,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=bass,note=11,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=bass,note=11,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=bass,note=12,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=bass,note=12,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=bass,note=13,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=bass,note=13,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=bass,note=14,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=bass,note=14,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=bass,note=15,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=bass,note=15,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=bass,note=16,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=bass,note=16,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=bass,note=17,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=bass,note=17,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=bass,note=18,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=bass,note=18,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=bass,note=19,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=bass,note=19,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=bass,note=20,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=bass,note=20,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=bass,note=21,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=bass,note=21,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=bass,note=22,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=bass,note=22,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=bass,note=23,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=bass,note=23,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=bass,note=24,powered=true]": { + "minecraft:note_block[instrument=basedrum,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=bass,note=24,powered=false]": { + "minecraft:note_block[instrument=basedrum,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=flute,note=0,powered=true]": { + "minecraft:note_block[instrument=snare,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=flute,note=0,powered=false]": { + "minecraft:note_block[instrument=snare,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=flute,note=1,powered=true]": { + "minecraft:note_block[instrument=snare,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=flute,note=1,powered=false]": { + "minecraft:note_block[instrument=snare,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=flute,note=2,powered=true]": { + "minecraft:note_block[instrument=snare,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=flute,note=2,powered=false]": { + "minecraft:note_block[instrument=snare,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=flute,note=3,powered=true]": { + "minecraft:note_block[instrument=snare,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=flute,note=3,powered=false]": { + "minecraft:note_block[instrument=snare,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=flute,note=4,powered=true]": { + "minecraft:note_block[instrument=snare,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=flute,note=4,powered=false]": { + "minecraft:note_block[instrument=snare,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=flute,note=5,powered=true]": { + "minecraft:note_block[instrument=snare,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=flute,note=5,powered=false]": { + "minecraft:note_block[instrument=snare,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=flute,note=6,powered=true]": { + "minecraft:note_block[instrument=snare,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=flute,note=6,powered=false]": { + "minecraft:note_block[instrument=snare,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=flute,note=7,powered=true]": { + "minecraft:note_block[instrument=snare,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=flute,note=7,powered=false]": { + "minecraft:note_block[instrument=snare,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=flute,note=8,powered=true]": { + "minecraft:note_block[instrument=snare,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=flute,note=8,powered=false]": { + "minecraft:note_block[instrument=snare,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=flute,note=9,powered=true]": { + "minecraft:note_block[instrument=snare,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=flute,note=9,powered=false]": { + "minecraft:note_block[instrument=snare,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=flute,note=10,powered=true]": { + "minecraft:note_block[instrument=snare,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=flute,note=10,powered=false]": { + "minecraft:note_block[instrument=snare,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=flute,note=11,powered=true]": { + "minecraft:note_block[instrument=snare,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=flute,note=11,powered=false]": { + "minecraft:note_block[instrument=snare,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=flute,note=12,powered=true]": { + "minecraft:note_block[instrument=snare,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=flute,note=12,powered=false]": { + "minecraft:note_block[instrument=snare,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=flute,note=13,powered=true]": { + "minecraft:note_block[instrument=snare,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=flute,note=13,powered=false]": { + "minecraft:note_block[instrument=snare,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=flute,note=14,powered=true]": { + "minecraft:note_block[instrument=snare,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=flute,note=14,powered=false]": { + "minecraft:note_block[instrument=snare,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=flute,note=15,powered=true]": { + "minecraft:note_block[instrument=snare,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=flute,note=15,powered=false]": { + "minecraft:note_block[instrument=snare,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=flute,note=16,powered=true]": { + "minecraft:note_block[instrument=snare,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=flute,note=16,powered=false]": { + "minecraft:note_block[instrument=snare,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=flute,note=17,powered=true]": { + "minecraft:note_block[instrument=snare,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=flute,note=17,powered=false]": { + "minecraft:note_block[instrument=snare,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=flute,note=18,powered=true]": { + "minecraft:note_block[instrument=snare,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=flute,note=18,powered=false]": { + "minecraft:note_block[instrument=snare,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=flute,note=19,powered=true]": { + "minecraft:note_block[instrument=snare,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=flute,note=19,powered=false]": { + "minecraft:note_block[instrument=snare,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=flute,note=20,powered=true]": { + "minecraft:note_block[instrument=snare,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=flute,note=20,powered=false]": { + "minecraft:note_block[instrument=snare,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=flute,note=21,powered=true]": { + "minecraft:note_block[instrument=snare,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=flute,note=21,powered=false]": { + "minecraft:note_block[instrument=snare,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=flute,note=22,powered=true]": { + "minecraft:note_block[instrument=snare,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=flute,note=22,powered=false]": { + "minecraft:note_block[instrument=snare,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=flute,note=23,powered=true]": { + "minecraft:note_block[instrument=snare,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=flute,note=23,powered=false]": { + "minecraft:note_block[instrument=snare,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=flute,note=24,powered=true]": { + "minecraft:note_block[instrument=snare,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=flute,note=24,powered=false]": { + "minecraft:note_block[instrument=snare,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=bell,note=0,powered=true]": { + "minecraft:note_block[instrument=hat,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=bell,note=0,powered=false]": { + "minecraft:note_block[instrument=hat,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=bell,note=1,powered=true]": { + "minecraft:note_block[instrument=hat,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=bell,note=1,powered=false]": { + "minecraft:note_block[instrument=hat,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=bell,note=2,powered=true]": { + "minecraft:note_block[instrument=hat,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=bell,note=2,powered=false]": { + "minecraft:note_block[instrument=hat,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=bell,note=3,powered=true]": { + "minecraft:note_block[instrument=hat,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=bell,note=3,powered=false]": { + "minecraft:note_block[instrument=hat,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=bell,note=4,powered=true]": { + "minecraft:note_block[instrument=hat,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=bell,note=4,powered=false]": { + "minecraft:note_block[instrument=hat,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=bell,note=5,powered=true]": { + "minecraft:note_block[instrument=hat,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=bell,note=5,powered=false]": { + "minecraft:note_block[instrument=hat,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=bell,note=6,powered=true]": { + "minecraft:note_block[instrument=hat,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=bell,note=6,powered=false]": { + "minecraft:note_block[instrument=hat,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=bell,note=7,powered=true]": { + "minecraft:note_block[instrument=hat,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=bell,note=7,powered=false]": { + "minecraft:note_block[instrument=hat,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=bell,note=8,powered=true]": { + "minecraft:note_block[instrument=hat,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=bell,note=8,powered=false]": { + "minecraft:note_block[instrument=hat,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=bell,note=9,powered=true]": { + "minecraft:note_block[instrument=hat,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=bell,note=9,powered=false]": { + "minecraft:note_block[instrument=hat,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=bell,note=10,powered=true]": { + "minecraft:note_block[instrument=hat,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=bell,note=10,powered=false]": { + "minecraft:note_block[instrument=hat,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=bell,note=11,powered=true]": { + "minecraft:note_block[instrument=hat,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=bell,note=11,powered=false]": { + "minecraft:note_block[instrument=hat,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=bell,note=12,powered=true]": { + "minecraft:note_block[instrument=hat,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=bell,note=12,powered=false]": { + "minecraft:note_block[instrument=hat,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=bell,note=13,powered=true]": { + "minecraft:note_block[instrument=hat,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=bell,note=13,powered=false]": { + "minecraft:note_block[instrument=hat,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=bell,note=14,powered=true]": { + "minecraft:note_block[instrument=hat,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=bell,note=14,powered=false]": { + "minecraft:note_block[instrument=hat,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=bell,note=15,powered=true]": { + "minecraft:note_block[instrument=hat,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=bell,note=15,powered=false]": { + "minecraft:note_block[instrument=hat,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=bell,note=16,powered=true]": { + "minecraft:note_block[instrument=hat,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=bell,note=16,powered=false]": { + "minecraft:note_block[instrument=hat,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=bell,note=17,powered=true]": { + "minecraft:note_block[instrument=hat,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=bell,note=17,powered=false]": { + "minecraft:note_block[instrument=hat,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=bell,note=18,powered=true]": { + "minecraft:note_block[instrument=hat,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=bell,note=18,powered=false]": { + "minecraft:note_block[instrument=hat,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=bell,note=19,powered=true]": { + "minecraft:note_block[instrument=hat,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=bell,note=19,powered=false]": { + "minecraft:note_block[instrument=hat,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=bell,note=20,powered=true]": { + "minecraft:note_block[instrument=hat,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=bell,note=20,powered=false]": { + "minecraft:note_block[instrument=hat,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=bell,note=21,powered=true]": { + "minecraft:note_block[instrument=hat,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=bell,note=21,powered=false]": { + "minecraft:note_block[instrument=hat,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=bell,note=22,powered=true]": { + "minecraft:note_block[instrument=hat,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=bell,note=22,powered=false]": { + "minecraft:note_block[instrument=hat,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=bell,note=23,powered=true]": { + "minecraft:note_block[instrument=hat,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=bell,note=23,powered=false]": { + "minecraft:note_block[instrument=hat,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=bell,note=24,powered=true]": { + "minecraft:note_block[instrument=hat,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=bell,note=24,powered=false]": { + "minecraft:note_block[instrument=hat,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=guitar,note=0,powered=true]": { + "minecraft:note_block[instrument=bass,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=guitar,note=0,powered=false]": { + "minecraft:note_block[instrument=bass,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=guitar,note=1,powered=true]": { + "minecraft:note_block[instrument=bass,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=guitar,note=1,powered=false]": { + "minecraft:note_block[instrument=bass,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=guitar,note=2,powered=true]": { + "minecraft:note_block[instrument=bass,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=guitar,note=2,powered=false]": { + "minecraft:note_block[instrument=bass,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=guitar,note=3,powered=true]": { + "minecraft:note_block[instrument=bass,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=guitar,note=3,powered=false]": { + "minecraft:note_block[instrument=bass,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=guitar,note=4,powered=true]": { + "minecraft:note_block[instrument=bass,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=guitar,note=4,powered=false]": { + "minecraft:note_block[instrument=bass,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=guitar,note=5,powered=true]": { + "minecraft:note_block[instrument=bass,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=guitar,note=5,powered=false]": { + "minecraft:note_block[instrument=bass,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=guitar,note=6,powered=true]": { + "minecraft:note_block[instrument=bass,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=guitar,note=6,powered=false]": { + "minecraft:note_block[instrument=bass,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=guitar,note=7,powered=true]": { + "minecraft:note_block[instrument=bass,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=guitar,note=7,powered=false]": { + "minecraft:note_block[instrument=bass,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=guitar,note=8,powered=true]": { + "minecraft:note_block[instrument=bass,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=guitar,note=8,powered=false]": { + "minecraft:note_block[instrument=bass,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=guitar,note=9,powered=true]": { + "minecraft:note_block[instrument=bass,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=guitar,note=9,powered=false]": { + "minecraft:note_block[instrument=bass,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=guitar,note=10,powered=true]": { + "minecraft:note_block[instrument=bass,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=guitar,note=10,powered=false]": { + "minecraft:note_block[instrument=bass,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=guitar,note=11,powered=true]": { + "minecraft:note_block[instrument=bass,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=guitar,note=11,powered=false]": { + "minecraft:note_block[instrument=bass,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=guitar,note=12,powered=true]": { + "minecraft:note_block[instrument=bass,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=guitar,note=12,powered=false]": { + "minecraft:note_block[instrument=bass,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=guitar,note=13,powered=true]": { + "minecraft:note_block[instrument=bass,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=guitar,note=13,powered=false]": { + "minecraft:note_block[instrument=bass,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=guitar,note=14,powered=true]": { + "minecraft:note_block[instrument=bass,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=guitar,note=14,powered=false]": { + "minecraft:note_block[instrument=bass,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=guitar,note=15,powered=true]": { + "minecraft:note_block[instrument=bass,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=guitar,note=15,powered=false]": { + "minecraft:note_block[instrument=bass,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=guitar,note=16,powered=true]": { + "minecraft:note_block[instrument=bass,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=guitar,note=16,powered=false]": { + "minecraft:note_block[instrument=bass,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=guitar,note=17,powered=true]": { + "minecraft:note_block[instrument=bass,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=guitar,note=17,powered=false]": { + "minecraft:note_block[instrument=bass,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=guitar,note=18,powered=true]": { + "minecraft:note_block[instrument=bass,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=guitar,note=18,powered=false]": { + "minecraft:note_block[instrument=bass,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=guitar,note=19,powered=true]": { + "minecraft:note_block[instrument=bass,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=guitar,note=19,powered=false]": { + "minecraft:note_block[instrument=bass,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=guitar,note=20,powered=true]": { + "minecraft:note_block[instrument=bass,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=guitar,note=20,powered=false]": { + "minecraft:note_block[instrument=bass,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=guitar,note=21,powered=true]": { + "minecraft:note_block[instrument=bass,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=guitar,note=21,powered=false]": { + "minecraft:note_block[instrument=bass,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=guitar,note=22,powered=true]": { + "minecraft:note_block[instrument=bass,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=guitar,note=22,powered=false]": { + "minecraft:note_block[instrument=bass,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=guitar,note=23,powered=true]": { + "minecraft:note_block[instrument=bass,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=guitar,note=23,powered=false]": { + "minecraft:note_block[instrument=bass,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=guitar,note=24,powered=true]": { + "minecraft:note_block[instrument=bass,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=guitar,note=24,powered=false]": { + "minecraft:note_block[instrument=bass,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=chime,note=0,powered=true]": { + "minecraft:note_block[instrument=flute,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=chime,note=0,powered=false]": { + "minecraft:note_block[instrument=flute,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=chime,note=1,powered=true]": { + "minecraft:note_block[instrument=flute,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=chime,note=1,powered=false]": { + "minecraft:note_block[instrument=flute,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=chime,note=2,powered=true]": { + "minecraft:note_block[instrument=flute,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=chime,note=2,powered=false]": { + "minecraft:note_block[instrument=flute,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=chime,note=3,powered=true]": { + "minecraft:note_block[instrument=flute,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=chime,note=3,powered=false]": { + "minecraft:note_block[instrument=flute,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=chime,note=4,powered=true]": { + "minecraft:note_block[instrument=flute,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=chime,note=4,powered=false]": { + "minecraft:note_block[instrument=flute,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=chime,note=5,powered=true]": { + "minecraft:note_block[instrument=flute,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=chime,note=5,powered=false]": { + "minecraft:note_block[instrument=flute,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=chime,note=6,powered=true]": { + "minecraft:note_block[instrument=flute,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=chime,note=6,powered=false]": { + "minecraft:note_block[instrument=flute,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=chime,note=7,powered=true]": { + "minecraft:note_block[instrument=flute,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=chime,note=7,powered=false]": { + "minecraft:note_block[instrument=flute,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=chime,note=8,powered=true]": { + "minecraft:note_block[instrument=flute,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=chime,note=8,powered=false]": { + "minecraft:note_block[instrument=flute,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=chime,note=9,powered=true]": { + "minecraft:note_block[instrument=flute,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=chime,note=9,powered=false]": { + "minecraft:note_block[instrument=flute,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=chime,note=10,powered=true]": { + "minecraft:note_block[instrument=flute,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=chime,note=10,powered=false]": { + "minecraft:note_block[instrument=flute,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=chime,note=11,powered=true]": { + "minecraft:note_block[instrument=flute,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=chime,note=11,powered=false]": { + "minecraft:note_block[instrument=flute,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=chime,note=12,powered=true]": { + "minecraft:note_block[instrument=flute,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=chime,note=12,powered=false]": { + "minecraft:note_block[instrument=flute,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=chime,note=13,powered=true]": { + "minecraft:note_block[instrument=flute,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=chime,note=13,powered=false]": { + "minecraft:note_block[instrument=flute,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=chime,note=14,powered=true]": { + "minecraft:note_block[instrument=flute,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=chime,note=14,powered=false]": { + "minecraft:note_block[instrument=flute,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=chime,note=15,powered=true]": { + "minecraft:note_block[instrument=flute,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=chime,note=15,powered=false]": { + "minecraft:note_block[instrument=flute,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=chime,note=16,powered=true]": { + "minecraft:note_block[instrument=flute,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=chime,note=16,powered=false]": { + "minecraft:note_block[instrument=flute,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=chime,note=17,powered=true]": { + "minecraft:note_block[instrument=flute,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=chime,note=17,powered=false]": { + "minecraft:note_block[instrument=flute,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=chime,note=18,powered=true]": { + "minecraft:note_block[instrument=flute,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=chime,note=18,powered=false]": { + "minecraft:note_block[instrument=flute,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=chime,note=19,powered=true]": { + "minecraft:note_block[instrument=flute,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=chime,note=19,powered=false]": { + "minecraft:note_block[instrument=flute,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=chime,note=20,powered=true]": { + "minecraft:note_block[instrument=flute,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=chime,note=20,powered=false]": { + "minecraft:note_block[instrument=flute,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=chime,note=21,powered=true]": { + "minecraft:note_block[instrument=flute,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=chime,note=21,powered=false]": { + "minecraft:note_block[instrument=flute,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=chime,note=22,powered=true]": { + "minecraft:note_block[instrument=flute,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=chime,note=22,powered=false]": { + "minecraft:note_block[instrument=flute,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=chime,note=23,powered=true]": { + "minecraft:note_block[instrument=flute,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=chime,note=23,powered=false]": { + "minecraft:note_block[instrument=flute,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=chime,note=24,powered=true]": { + "minecraft:note_block[instrument=flute,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=chime,note=24,powered=false]": { + "minecraft:note_block[instrument=flute,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=xylophone,note=0,powered=true]": { + "minecraft:note_block[instrument=bell,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=xylophone,note=0,powered=false]": { + "minecraft:note_block[instrument=bell,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=xylophone,note=1,powered=true]": { + "minecraft:note_block[instrument=bell,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=xylophone,note=1,powered=false]": { + "minecraft:note_block[instrument=bell,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=xylophone,note=2,powered=true]": { + "minecraft:note_block[instrument=bell,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=xylophone,note=2,powered=false]": { + "minecraft:note_block[instrument=bell,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=xylophone,note=3,powered=true]": { + "minecraft:note_block[instrument=bell,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=xylophone,note=3,powered=false]": { + "minecraft:note_block[instrument=bell,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=xylophone,note=4,powered=true]": { + "minecraft:note_block[instrument=bell,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=xylophone,note=4,powered=false]": { + "minecraft:note_block[instrument=bell,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=xylophone,note=5,powered=true]": { + "minecraft:note_block[instrument=bell,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=xylophone,note=5,powered=false]": { + "minecraft:note_block[instrument=bell,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=xylophone,note=6,powered=true]": { + "minecraft:note_block[instrument=bell,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=xylophone,note=6,powered=false]": { + "minecraft:note_block[instrument=bell,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=xylophone,note=7,powered=true]": { + "minecraft:note_block[instrument=bell,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=xylophone,note=7,powered=false]": { + "minecraft:note_block[instrument=bell,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=xylophone,note=8,powered=true]": { + "minecraft:note_block[instrument=bell,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=xylophone,note=8,powered=false]": { + "minecraft:note_block[instrument=bell,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=xylophone,note=9,powered=true]": { + "minecraft:note_block[instrument=bell,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=xylophone,note=9,powered=false]": { + "minecraft:note_block[instrument=bell,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=xylophone,note=10,powered=true]": { + "minecraft:note_block[instrument=bell,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=xylophone,note=10,powered=false]": { + "minecraft:note_block[instrument=bell,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=xylophone,note=11,powered=true]": { + "minecraft:note_block[instrument=bell,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=xylophone,note=11,powered=false]": { + "minecraft:note_block[instrument=bell,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=xylophone,note=12,powered=true]": { + "minecraft:note_block[instrument=bell,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=xylophone,note=12,powered=false]": { + "minecraft:note_block[instrument=bell,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=xylophone,note=13,powered=true]": { + "minecraft:note_block[instrument=bell,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=xylophone,note=13,powered=false]": { + "minecraft:note_block[instrument=bell,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=xylophone,note=14,powered=true]": { + "minecraft:note_block[instrument=bell,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=xylophone,note=14,powered=false]": { + "minecraft:note_block[instrument=bell,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=xylophone,note=15,powered=true]": { + "minecraft:note_block[instrument=bell,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=xylophone,note=15,powered=false]": { + "minecraft:note_block[instrument=bell,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=xylophone,note=16,powered=true]": { + "minecraft:note_block[instrument=bell,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=xylophone,note=16,powered=false]": { + "minecraft:note_block[instrument=bell,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=xylophone,note=17,powered=true]": { + "minecraft:note_block[instrument=bell,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=xylophone,note=17,powered=false]": { + "minecraft:note_block[instrument=bell,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=xylophone,note=18,powered=true]": { + "minecraft:note_block[instrument=bell,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=xylophone,note=18,powered=false]": { + "minecraft:note_block[instrument=bell,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=xylophone,note=19,powered=true]": { + "minecraft:note_block[instrument=bell,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=xylophone,note=19,powered=false]": { + "minecraft:note_block[instrument=bell,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=xylophone,note=20,powered=true]": { + "minecraft:note_block[instrument=bell,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=xylophone,note=20,powered=false]": { + "minecraft:note_block[instrument=bell,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=xylophone,note=21,powered=true]": { + "minecraft:note_block[instrument=bell,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=xylophone,note=21,powered=false]": { + "minecraft:note_block[instrument=bell,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=xylophone,note=22,powered=true]": { + "minecraft:note_block[instrument=bell,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=xylophone,note=22,powered=false]": { + "minecraft:note_block[instrument=bell,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=xylophone,note=23,powered=true]": { + "minecraft:note_block[instrument=bell,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=xylophone,note=23,powered=false]": { + "minecraft:note_block[instrument=bell,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=xylophone,note=24,powered=true]": { + "minecraft:note_block[instrument=bell,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=xylophone,note=24,powered=false]": { + "minecraft:note_block[instrument=bell,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=iron_xylophone,note=0,powered=true]": { + "minecraft:note_block[instrument=guitar,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=iron_xylophone,note=0,powered=false]": { + "minecraft:note_block[instrument=guitar,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=iron_xylophone,note=1,powered=true]": { + "minecraft:note_block[instrument=guitar,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=iron_xylophone,note=1,powered=false]": { + "minecraft:note_block[instrument=guitar,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=iron_xylophone,note=2,powered=true]": { + "minecraft:note_block[instrument=guitar,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=iron_xylophone,note=2,powered=false]": { + "minecraft:note_block[instrument=guitar,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=iron_xylophone,note=3,powered=true]": { + "minecraft:note_block[instrument=guitar,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=iron_xylophone,note=3,powered=false]": { + "minecraft:note_block[instrument=guitar,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=iron_xylophone,note=4,powered=true]": { + "minecraft:note_block[instrument=guitar,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=iron_xylophone,note=4,powered=false]": { + "minecraft:note_block[instrument=guitar,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=iron_xylophone,note=5,powered=true]": { + "minecraft:note_block[instrument=guitar,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=iron_xylophone,note=5,powered=false]": { + "minecraft:note_block[instrument=guitar,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=iron_xylophone,note=6,powered=true]": { + "minecraft:note_block[instrument=guitar,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=iron_xylophone,note=6,powered=false]": { + "minecraft:note_block[instrument=guitar,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=iron_xylophone,note=7,powered=true]": { + "minecraft:note_block[instrument=guitar,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=iron_xylophone,note=7,powered=false]": { + "minecraft:note_block[instrument=guitar,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=iron_xylophone,note=8,powered=true]": { + "minecraft:note_block[instrument=guitar,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=iron_xylophone,note=8,powered=false]": { + "minecraft:note_block[instrument=guitar,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=iron_xylophone,note=9,powered=true]": { + "minecraft:note_block[instrument=guitar,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=iron_xylophone,note=9,powered=false]": { + "minecraft:note_block[instrument=guitar,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=iron_xylophone,note=10,powered=true]": { + "minecraft:note_block[instrument=guitar,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=iron_xylophone,note=10,powered=false]": { + "minecraft:note_block[instrument=guitar,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=iron_xylophone,note=11,powered=true]": { + "minecraft:note_block[instrument=guitar,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=iron_xylophone,note=11,powered=false]": { + "minecraft:note_block[instrument=guitar,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=iron_xylophone,note=12,powered=true]": { + "minecraft:note_block[instrument=guitar,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=iron_xylophone,note=12,powered=false]": { + "minecraft:note_block[instrument=guitar,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=iron_xylophone,note=13,powered=true]": { + "minecraft:note_block[instrument=guitar,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=iron_xylophone,note=13,powered=false]": { + "minecraft:note_block[instrument=guitar,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=iron_xylophone,note=14,powered=true]": { + "minecraft:note_block[instrument=guitar,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=iron_xylophone,note=14,powered=false]": { + "minecraft:note_block[instrument=guitar,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=iron_xylophone,note=15,powered=true]": { + "minecraft:note_block[instrument=guitar,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=iron_xylophone,note=15,powered=false]": { + "minecraft:note_block[instrument=guitar,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=iron_xylophone,note=16,powered=true]": { + "minecraft:note_block[instrument=guitar,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=iron_xylophone,note=16,powered=false]": { + "minecraft:note_block[instrument=guitar,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=iron_xylophone,note=17,powered=true]": { + "minecraft:note_block[instrument=guitar,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=iron_xylophone,note=17,powered=false]": { + "minecraft:note_block[instrument=guitar,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=iron_xylophone,note=18,powered=true]": { + "minecraft:note_block[instrument=guitar,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=iron_xylophone,note=18,powered=false]": { + "minecraft:note_block[instrument=guitar,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=iron_xylophone,note=19,powered=true]": { + "minecraft:note_block[instrument=guitar,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=iron_xylophone,note=19,powered=false]": { + "minecraft:note_block[instrument=guitar,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=iron_xylophone,note=20,powered=true]": { + "minecraft:note_block[instrument=guitar,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=iron_xylophone,note=20,powered=false]": { + "minecraft:note_block[instrument=guitar,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=iron_xylophone,note=21,powered=true]": { + "minecraft:note_block[instrument=guitar,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=iron_xylophone,note=21,powered=false]": { + "minecraft:note_block[instrument=guitar,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=iron_xylophone,note=22,powered=true]": { + "minecraft:note_block[instrument=guitar,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=iron_xylophone,note=22,powered=false]": { + "minecraft:note_block[instrument=guitar,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=iron_xylophone,note=23,powered=true]": { + "minecraft:note_block[instrument=guitar,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=iron_xylophone,note=23,powered=false]": { + "minecraft:note_block[instrument=guitar,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=iron_xylophone,note=24,powered=true]": { + "minecraft:note_block[instrument=guitar,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=iron_xylophone,note=24,powered=false]": { + "minecraft:note_block[instrument=guitar,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=cow_bell,note=0,powered=true]": { + "minecraft:note_block[instrument=chime,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=cow_bell,note=0,powered=false]": { + "minecraft:note_block[instrument=chime,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=cow_bell,note=1,powered=true]": { + "minecraft:note_block[instrument=chime,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=cow_bell,note=1,powered=false]": { + "minecraft:note_block[instrument=chime,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=cow_bell,note=2,powered=true]": { + "minecraft:note_block[instrument=chime,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=cow_bell,note=2,powered=false]": { + "minecraft:note_block[instrument=chime,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=cow_bell,note=3,powered=true]": { + "minecraft:note_block[instrument=chime,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=cow_bell,note=3,powered=false]": { + "minecraft:note_block[instrument=chime,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=cow_bell,note=4,powered=true]": { + "minecraft:note_block[instrument=chime,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=cow_bell,note=4,powered=false]": { + "minecraft:note_block[instrument=chime,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=cow_bell,note=5,powered=true]": { + "minecraft:note_block[instrument=chime,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=cow_bell,note=5,powered=false]": { + "minecraft:note_block[instrument=chime,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=cow_bell,note=6,powered=true]": { + "minecraft:note_block[instrument=chime,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=cow_bell,note=6,powered=false]": { + "minecraft:note_block[instrument=chime,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=cow_bell,note=7,powered=true]": { + "minecraft:note_block[instrument=chime,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=cow_bell,note=7,powered=false]": { + "minecraft:note_block[instrument=chime,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=cow_bell,note=8,powered=true]": { + "minecraft:note_block[instrument=chime,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=cow_bell,note=8,powered=false]": { + "minecraft:note_block[instrument=chime,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=cow_bell,note=9,powered=true]": { + "minecraft:note_block[instrument=chime,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=cow_bell,note=9,powered=false]": { + "minecraft:note_block[instrument=chime,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=cow_bell,note=10,powered=true]": { + "minecraft:note_block[instrument=chime,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=cow_bell,note=10,powered=false]": { + "minecraft:note_block[instrument=chime,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=cow_bell,note=11,powered=true]": { + "minecraft:note_block[instrument=chime,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=cow_bell,note=11,powered=false]": { + "minecraft:note_block[instrument=chime,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=cow_bell,note=12,powered=true]": { + "minecraft:note_block[instrument=chime,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=cow_bell,note=12,powered=false]": { + "minecraft:note_block[instrument=chime,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=cow_bell,note=13,powered=true]": { + "minecraft:note_block[instrument=chime,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=cow_bell,note=13,powered=false]": { + "minecraft:note_block[instrument=chime,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=cow_bell,note=14,powered=true]": { + "minecraft:note_block[instrument=chime,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=cow_bell,note=14,powered=false]": { + "minecraft:note_block[instrument=chime,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=cow_bell,note=15,powered=true]": { + "minecraft:note_block[instrument=chime,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=cow_bell,note=15,powered=false]": { + "minecraft:note_block[instrument=chime,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=cow_bell,note=16,powered=true]": { + "minecraft:note_block[instrument=chime,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=cow_bell,note=16,powered=false]": { + "minecraft:note_block[instrument=chime,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=cow_bell,note=17,powered=true]": { + "minecraft:note_block[instrument=chime,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=cow_bell,note=17,powered=false]": { + "minecraft:note_block[instrument=chime,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=cow_bell,note=18,powered=true]": { + "minecraft:note_block[instrument=chime,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=cow_bell,note=18,powered=false]": { + "minecraft:note_block[instrument=chime,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=cow_bell,note=19,powered=true]": { + "minecraft:note_block[instrument=chime,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=cow_bell,note=19,powered=false]": { + "minecraft:note_block[instrument=chime,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=cow_bell,note=20,powered=true]": { + "minecraft:note_block[instrument=chime,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=cow_bell,note=20,powered=false]": { + "minecraft:note_block[instrument=chime,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=cow_bell,note=21,powered=true]": { + "minecraft:note_block[instrument=chime,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=cow_bell,note=21,powered=false]": { + "minecraft:note_block[instrument=chime,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=cow_bell,note=22,powered=true]": { + "minecraft:note_block[instrument=chime,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=cow_bell,note=22,powered=false]": { + "minecraft:note_block[instrument=chime,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=cow_bell,note=23,powered=true]": { + "minecraft:note_block[instrument=chime,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=cow_bell,note=23,powered=false]": { + "minecraft:note_block[instrument=chime,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=cow_bell,note=24,powered=true]": { + "minecraft:note_block[instrument=chime,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=cow_bell,note=24,powered=false]": { + "minecraft:note_block[instrument=chime,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=didgeridoo,note=0,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=didgeridoo,note=0,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=didgeridoo,note=1,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=didgeridoo,note=1,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=didgeridoo,note=2,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=didgeridoo,note=2,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=didgeridoo,note=3,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=didgeridoo,note=3,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=didgeridoo,note=4,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=didgeridoo,note=4,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=didgeridoo,note=5,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=didgeridoo,note=5,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=didgeridoo,note=6,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=didgeridoo,note=6,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=didgeridoo,note=7,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=didgeridoo,note=7,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=didgeridoo,note=8,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=didgeridoo,note=8,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=didgeridoo,note=9,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=didgeridoo,note=9,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=didgeridoo,note=10,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=didgeridoo,note=10,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=didgeridoo,note=11,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=didgeridoo,note=11,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=didgeridoo,note=12,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=didgeridoo,note=12,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=didgeridoo,note=13,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=didgeridoo,note=13,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=didgeridoo,note=14,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=didgeridoo,note=14,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=didgeridoo,note=15,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=didgeridoo,note=15,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=didgeridoo,note=16,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=didgeridoo,note=16,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=didgeridoo,note=17,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=didgeridoo,note=17,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=didgeridoo,note=18,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=didgeridoo,note=18,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=didgeridoo,note=19,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=didgeridoo,note=19,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=didgeridoo,note=20,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=didgeridoo,note=20,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=didgeridoo,note=21,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=didgeridoo,note=21,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=didgeridoo,note=22,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=didgeridoo,note=22,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=didgeridoo,note=23,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=didgeridoo,note=23,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=didgeridoo,note=24,powered=true]": { + "minecraft:note_block[instrument=xylophone,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=didgeridoo,note=24,powered=false]": { + "minecraft:note_block[instrument=xylophone,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=bit,note=0,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=bit,note=0,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=bit,note=1,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=bit,note=1,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=bit,note=2,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=bit,note=2,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=bit,note=3,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=bit,note=3,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=bit,note=4,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=bit,note=4,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=bit,note=5,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=bit,note=5,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=bit,note=6,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=bit,note=6,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=bit,note=7,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=bit,note=7,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=bit,note=8,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=bit,note=8,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=bit,note=9,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=bit,note=9,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=bit,note=10,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=bit,note=10,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=bit,note=11,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=bit,note=11,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=bit,note=12,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=bit,note=12,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=bit,note=13,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=bit,note=13,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=bit,note=14,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=bit,note=14,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=bit,note=15,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=bit,note=15,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=bit,note=16,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=bit,note=16,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=bit,note=17,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=bit,note=17,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=bit,note=18,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=bit,note=18,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=bit,note=19,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=bit,note=19,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=bit,note=20,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=bit,note=20,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=bit,note=21,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=bit,note=21,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=bit,note=22,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=bit,note=22,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=bit,note=23,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=bit,note=23,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=bit,note=24,powered=true]": { + "minecraft:note_block[instrument=iron_xylophone,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=bit,note=24,powered=false]": { + "minecraft:note_block[instrument=iron_xylophone,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=banjo,note=0,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=banjo,note=0,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=banjo,note=1,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=banjo,note=1,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=banjo,note=2,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=banjo,note=2,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=banjo,note=3,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=banjo,note=3,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=banjo,note=4,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=banjo,note=4,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=banjo,note=5,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=banjo,note=5,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=banjo,note=6,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=banjo,note=6,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=banjo,note=7,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=banjo,note=7,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=banjo,note=8,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=banjo,note=8,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=banjo,note=9,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=banjo,note=9,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=banjo,note=10,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=banjo,note=10,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=banjo,note=11,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=banjo,note=11,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=banjo,note=12,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=banjo,note=12,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=banjo,note=13,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=banjo,note=13,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=banjo,note=14,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=banjo,note=14,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=banjo,note=15,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=banjo,note=15,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=banjo,note=16,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=banjo,note=16,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=banjo,note=17,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=banjo,note=17,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=banjo,note=18,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=banjo,note=18,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=banjo,note=19,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=banjo,note=19,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=banjo,note=20,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=banjo,note=20,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=banjo,note=21,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=banjo,note=21,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=banjo,note=22,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=banjo,note=22,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=banjo,note=23,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=banjo,note=23,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=banjo,note=24,powered=true]": { + "minecraft:note_block[instrument=cow_bell,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=banjo,note=24,powered=false]": { + "minecraft:note_block[instrument=cow_bell,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=pling,note=0,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=0,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=pling,note=0,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=0,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 0 }, - "minecraft:note_block[instrument=pling,note=1,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=1,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=pling,note=1,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=1,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 1 }, - "minecraft:note_block[instrument=pling,note=2,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=2,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=pling,note=2,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=2,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 2 }, - "minecraft:note_block[instrument=pling,note=3,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=3,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=pling,note=3,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=3,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 3 }, - "minecraft:note_block[instrument=pling,note=4,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=4,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=pling,note=4,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=4,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 4 }, - "minecraft:note_block[instrument=pling,note=5,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=5,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=pling,note=5,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=5,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 5 }, - "minecraft:note_block[instrument=pling,note=6,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=6,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=pling,note=6,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=6,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 6 }, - "minecraft:note_block[instrument=pling,note=7,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=7,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=pling,note=7,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=7,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 7 }, - "minecraft:note_block[instrument=pling,note=8,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=8,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=pling,note=8,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=8,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 8 }, - "minecraft:note_block[instrument=pling,note=9,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=9,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=pling,note=9,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=9,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 9 }, - "minecraft:note_block[instrument=pling,note=10,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=10,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=pling,note=10,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=10,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 10 }, - "minecraft:note_block[instrument=pling,note=11,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=11,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=pling,note=11,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=11,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 11 }, - "minecraft:note_block[instrument=pling,note=12,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=12,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=pling,note=12,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=12,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 12 }, - "minecraft:note_block[instrument=pling,note=13,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=13,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=pling,note=13,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=13,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 13 }, - "minecraft:note_block[instrument=pling,note=14,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=14,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=pling,note=14,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=14,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 14 }, - "minecraft:note_block[instrument=pling,note=15,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=15,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=pling,note=15,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=15,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 15 }, - "minecraft:note_block[instrument=pling,note=16,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=16,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=pling,note=16,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=16,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 16 }, - "minecraft:note_block[instrument=pling,note=17,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=17,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=pling,note=17,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=17,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 17 }, - "minecraft:note_block[instrument=pling,note=18,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=18,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=pling,note=18,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=18,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 18 }, - "minecraft:note_block[instrument=pling,note=19,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=19,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=pling,note=19,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=19,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 19 }, - "minecraft:note_block[instrument=pling,note=20,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=20,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=pling,note=20,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=20,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 20 }, - "minecraft:note_block[instrument=pling,note=21,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=21,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=pling,note=21,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=21,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 21 }, - "minecraft:note_block[instrument=pling,note=22,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=22,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=pling,note=22,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=22,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 22 }, - "minecraft:note_block[instrument=pling,note=23,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=23,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=pling,note=23,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=23,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 23 }, - "minecraft:note_block[instrument=pling,note=24,powered=true]": { + "minecraft:note_block[instrument=didgeridoo,note=24,powered=true]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:note_block[instrument=pling,note=24,powered=false]": { + "minecraft:note_block[instrument=didgeridoo,note=24,powered=false]": { "bedrock_identifier": "minecraft:noteblock", "block_hardness": 0.8, "collision_index": 1, "can_break_with_hand": true, "note_pitch": 24 }, - "minecraft:white_bed[facing=north,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=0,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } + "note_pitch": 0 }, - "minecraft:white_bed[facing=north,occupied=true,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 3, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=0,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } + "note_pitch": 0 }, - "minecraft:white_bed[facing=north,occupied=false,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=1,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } + "note_pitch": 1 }, - "minecraft:white_bed[facing=north,occupied=false,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 3, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=1,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } + "note_pitch": 1 }, - "minecraft:white_bed[facing=south,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 3, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=2,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } + "note_pitch": 2 }, - "minecraft:white_bed[facing=south,occupied=true,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=2,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } + "note_pitch": 2 }, - "minecraft:white_bed[facing=south,occupied=false,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 3, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=3,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } + "note_pitch": 3 }, - "minecraft:white_bed[facing=south,occupied=false,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=3,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } + "note_pitch": 3 }, - "minecraft:white_bed[facing=west,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 4, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=4,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } + "note_pitch": 4 }, - "minecraft:white_bed[facing=west,occupied=true,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 5, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=4,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } + "note_pitch": 4 }, - "minecraft:white_bed[facing=west,occupied=false,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 4, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=5,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } + "note_pitch": 5 }, - "minecraft:white_bed[facing=west,occupied=false,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 5, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=5,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } + "note_pitch": 5 }, - "minecraft:white_bed[facing=east,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 5, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=6,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } + "note_pitch": 6 }, - "minecraft:white_bed[facing=east,occupied=true,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 4, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=6,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } + "note_pitch": 6 }, - "minecraft:white_bed[facing=east,occupied=false,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 5, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=7,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } + "note_pitch": 7 }, - "minecraft:white_bed[facing=east,occupied=false,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 4, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=7,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 0, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } + "note_pitch": 7 }, - "minecraft:orange_bed[facing=north,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=8,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } + "note_pitch": 8 }, - "minecraft:orange_bed[facing=north,occupied=true,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 3, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=8,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } + "note_pitch": 8 }, - "minecraft:orange_bed[facing=north,occupied=false,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=9,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } + "note_pitch": 9 }, - "minecraft:orange_bed[facing=north,occupied=false,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 3, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=9,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } + "note_pitch": 9 }, - "minecraft:orange_bed[facing=south,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 3, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=10,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } + "note_pitch": 10 }, - "minecraft:orange_bed[facing=south,occupied=true,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=10,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } + "note_pitch": 10 }, - "minecraft:orange_bed[facing=south,occupied=false,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 3, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=11,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } + "note_pitch": 11 }, - "minecraft:orange_bed[facing=south,occupied=false,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=11,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } + "note_pitch": 11 }, - "minecraft:orange_bed[facing=west,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 4, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=12,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } + "note_pitch": 12 }, - "minecraft:orange_bed[facing=west,occupied=true,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 5, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=12,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } + "note_pitch": 12 }, - "minecraft:orange_bed[facing=west,occupied=false,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 4, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=13,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } + "note_pitch": 13 }, - "minecraft:orange_bed[facing=west,occupied=false,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 5, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=13,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } + "note_pitch": 13 }, - "minecraft:orange_bed[facing=east,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 5, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=14,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } + "note_pitch": 14 }, - "minecraft:orange_bed[facing=east,occupied=true,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 4, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=14,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } + "note_pitch": 14 }, - "minecraft:orange_bed[facing=east,occupied=false,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 5, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=15,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } + "note_pitch": 15 }, - "minecraft:orange_bed[facing=east,occupied=false,part=foot]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 4, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:note_block[instrument=bit,note=15,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, "can_break_with_hand": true, - "bed_color": 1, - "bedrock_states": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } + "note_pitch": 15 }, - "minecraft:magenta_bed[facing=north,occupied=true,part=head]": { - "bedrock_identifier": "minecraft:bed", - "block_hardness": 0.2, - "collision_index": 2, - "piston_behavior": "destroy", - "has_block_entity": true, - "can_break_with_hand": true, - "bed_color": 2, + "minecraft:note_block[instrument=bit,note=16,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 16 + }, + "minecraft:note_block[instrument=bit,note=16,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 16 + }, + "minecraft:note_block[instrument=bit,note=17,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 17 + }, + "minecraft:note_block[instrument=bit,note=17,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 17 + }, + "minecraft:note_block[instrument=bit,note=18,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 18 + }, + "minecraft:note_block[instrument=bit,note=18,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 18 + }, + "minecraft:note_block[instrument=bit,note=19,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 19 + }, + "minecraft:note_block[instrument=bit,note=19,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 19 + }, + "minecraft:note_block[instrument=bit,note=20,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 20 + }, + "minecraft:note_block[instrument=bit,note=20,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 20 + }, + "minecraft:note_block[instrument=bit,note=21,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 21 + }, + "minecraft:note_block[instrument=bit,note=21,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 21 + }, + "minecraft:note_block[instrument=bit,note=22,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 22 + }, + "minecraft:note_block[instrument=bit,note=22,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 22 + }, + "minecraft:note_block[instrument=bit,note=23,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 23 + }, + "minecraft:note_block[instrument=bit,note=23,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 23 + }, + "minecraft:note_block[instrument=bit,note=24,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 24 + }, + "minecraft:note_block[instrument=bit,note=24,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 24 + }, + "minecraft:note_block[instrument=banjo,note=0,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 0 + }, + "minecraft:note_block[instrument=banjo,note=0,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 0 + }, + "minecraft:note_block[instrument=banjo,note=1,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 1 + }, + "minecraft:note_block[instrument=banjo,note=1,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 1 + }, + "minecraft:note_block[instrument=banjo,note=2,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 2 + }, + "minecraft:note_block[instrument=banjo,note=2,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 2 + }, + "minecraft:note_block[instrument=banjo,note=3,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 3 + }, + "minecraft:note_block[instrument=banjo,note=3,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 3 + }, + "minecraft:note_block[instrument=banjo,note=4,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 4 + }, + "minecraft:note_block[instrument=banjo,note=4,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 4 + }, + "minecraft:note_block[instrument=banjo,note=5,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 5 + }, + "minecraft:note_block[instrument=banjo,note=5,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 5 + }, + "minecraft:note_block[instrument=banjo,note=6,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 6 + }, + "minecraft:note_block[instrument=banjo,note=6,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 6 + }, + "minecraft:note_block[instrument=banjo,note=7,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 7 + }, + "minecraft:note_block[instrument=banjo,note=7,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 7 + }, + "minecraft:note_block[instrument=banjo,note=8,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 8 + }, + "minecraft:note_block[instrument=banjo,note=8,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 8 + }, + "minecraft:note_block[instrument=banjo,note=9,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 9 + }, + "minecraft:note_block[instrument=banjo,note=9,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 9 + }, + "minecraft:note_block[instrument=banjo,note=10,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 10 + }, + "minecraft:note_block[instrument=banjo,note=10,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 10 + }, + "minecraft:note_block[instrument=banjo,note=11,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 11 + }, + "minecraft:note_block[instrument=banjo,note=11,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 11 + }, + "minecraft:note_block[instrument=banjo,note=12,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 12 + }, + "minecraft:note_block[instrument=banjo,note=12,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 12 + }, + "minecraft:note_block[instrument=banjo,note=13,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 13 + }, + "minecraft:note_block[instrument=banjo,note=13,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 13 + }, + "minecraft:note_block[instrument=banjo,note=14,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 14 + }, + "minecraft:note_block[instrument=banjo,note=14,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 14 + }, + "minecraft:note_block[instrument=banjo,note=15,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 15 + }, + "minecraft:note_block[instrument=banjo,note=15,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 15 + }, + "minecraft:note_block[instrument=banjo,note=16,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 16 + }, + "minecraft:note_block[instrument=banjo,note=16,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 16 + }, + "minecraft:note_block[instrument=banjo,note=17,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 17 + }, + "minecraft:note_block[instrument=banjo,note=17,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 17 + }, + "minecraft:note_block[instrument=banjo,note=18,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 18 + }, + "minecraft:note_block[instrument=banjo,note=18,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 18 + }, + "minecraft:note_block[instrument=banjo,note=19,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 19 + }, + "minecraft:note_block[instrument=banjo,note=19,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 19 + }, + "minecraft:note_block[instrument=banjo,note=20,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 20 + }, + "minecraft:note_block[instrument=banjo,note=20,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 20 + }, + "minecraft:note_block[instrument=banjo,note=21,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 21 + }, + "minecraft:note_block[instrument=banjo,note=21,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 21 + }, + "minecraft:note_block[instrument=banjo,note=22,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 22 + }, + "minecraft:note_block[instrument=banjo,note=22,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 22 + }, + "minecraft:note_block[instrument=banjo,note=23,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 23 + }, + "minecraft:note_block[instrument=banjo,note=23,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 23 + }, + "minecraft:note_block[instrument=banjo,note=24,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 24 + }, + "minecraft:note_block[instrument=banjo,note=24,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 24 + }, + "minecraft:note_block[instrument=pling,note=0,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 0 + }, + "minecraft:note_block[instrument=pling,note=0,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 0 + }, + "minecraft:note_block[instrument=pling,note=1,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 1 + }, + "minecraft:note_block[instrument=pling,note=1,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 1 + }, + "minecraft:note_block[instrument=pling,note=2,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 2 + }, + "minecraft:note_block[instrument=pling,note=2,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 2 + }, + "minecraft:note_block[instrument=pling,note=3,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 3 + }, + "minecraft:note_block[instrument=pling,note=3,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 3 + }, + "minecraft:note_block[instrument=pling,note=4,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 4 + }, + "minecraft:note_block[instrument=pling,note=4,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 4 + }, + "minecraft:note_block[instrument=pling,note=5,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 5 + }, + "minecraft:note_block[instrument=pling,note=5,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 5 + }, + "minecraft:note_block[instrument=pling,note=6,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 6 + }, + "minecraft:note_block[instrument=pling,note=6,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 6 + }, + "minecraft:note_block[instrument=pling,note=7,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 7 + }, + "minecraft:note_block[instrument=pling,note=7,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 7 + }, + "minecraft:note_block[instrument=pling,note=8,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 8 + }, + "minecraft:note_block[instrument=pling,note=8,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 8 + }, + "minecraft:note_block[instrument=pling,note=9,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 9 + }, + "minecraft:note_block[instrument=pling,note=9,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 9 + }, + "minecraft:note_block[instrument=pling,note=10,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 10 + }, + "minecraft:note_block[instrument=pling,note=10,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 10 + }, + "minecraft:note_block[instrument=pling,note=11,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 11 + }, + "minecraft:note_block[instrument=pling,note=11,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 11 + }, + "minecraft:note_block[instrument=pling,note=12,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 12 + }, + "minecraft:note_block[instrument=pling,note=12,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 12 + }, + "minecraft:note_block[instrument=pling,note=13,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 13 + }, + "minecraft:note_block[instrument=pling,note=13,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 13 + }, + "minecraft:note_block[instrument=pling,note=14,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 14 + }, + "minecraft:note_block[instrument=pling,note=14,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 14 + }, + "minecraft:note_block[instrument=pling,note=15,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 15 + }, + "minecraft:note_block[instrument=pling,note=15,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 15 + }, + "minecraft:note_block[instrument=pling,note=16,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 16 + }, + "minecraft:note_block[instrument=pling,note=16,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 16 + }, + "minecraft:note_block[instrument=pling,note=17,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 17 + }, + "minecraft:note_block[instrument=pling,note=17,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 17 + }, + "minecraft:note_block[instrument=pling,note=18,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 18 + }, + "minecraft:note_block[instrument=pling,note=18,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 18 + }, + "minecraft:note_block[instrument=pling,note=19,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 19 + }, + "minecraft:note_block[instrument=pling,note=19,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 19 + }, + "minecraft:note_block[instrument=pling,note=20,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 20 + }, + "minecraft:note_block[instrument=pling,note=20,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 20 + }, + "minecraft:note_block[instrument=pling,note=21,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 21 + }, + "minecraft:note_block[instrument=pling,note=21,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 21 + }, + "minecraft:note_block[instrument=pling,note=22,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 22 + }, + "minecraft:note_block[instrument=pling,note=22,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 22 + }, + "minecraft:note_block[instrument=pling,note=23,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 23 + }, + "minecraft:note_block[instrument=pling,note=23,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 23 + }, + "minecraft:note_block[instrument=pling,note=24,powered=true]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 24 + }, + "minecraft:note_block[instrument=pling,note=24,powered=false]": { + "bedrock_identifier": "minecraft:noteblock", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true, + "note_pitch": 24 + }, + "minecraft:white_bed[facing=north,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 0, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 2 } }, - "minecraft:magenta_bed[facing=north,occupied=true,part=foot]": { + "minecraft:white_bed[facing=north,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 2 } }, - "minecraft:magenta_bed[facing=north,occupied=false,part=head]": { + "minecraft:white_bed[facing=north,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 2 } }, - "minecraft:magenta_bed[facing=north,occupied=false,part=foot]": { + "minecraft:white_bed[facing=north,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 2 } }, - "minecraft:magenta_bed[facing=south,occupied=true,part=head]": { + "minecraft:white_bed[facing=south,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 0 } }, - "minecraft:magenta_bed[facing=south,occupied=true,part=foot]": { + "minecraft:white_bed[facing=south,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 0 } }, - "minecraft:magenta_bed[facing=south,occupied=false,part=head]": { + "minecraft:white_bed[facing=south,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 0 } }, - "minecraft:magenta_bed[facing=south,occupied=false,part=foot]": { + "minecraft:white_bed[facing=south,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 0 } }, - "minecraft:magenta_bed[facing=west,occupied=true,part=head]": { + "minecraft:white_bed[facing=west,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 1 } }, - "minecraft:magenta_bed[facing=west,occupied=true,part=foot]": { + "minecraft:white_bed[facing=west,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 1 } }, - "minecraft:magenta_bed[facing=west,occupied=false,part=head]": { + "minecraft:white_bed[facing=west,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 1 } }, - "minecraft:magenta_bed[facing=west,occupied=false,part=foot]": { + "minecraft:white_bed[facing=west,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 1 } }, - "minecraft:magenta_bed[facing=east,occupied=true,part=head]": { + "minecraft:white_bed[facing=east,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 3 } }, - "minecraft:magenta_bed[facing=east,occupied=true,part=foot]": { + "minecraft:white_bed[facing=east,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 3 } }, - "minecraft:magenta_bed[facing=east,occupied=false,part=head]": { + "minecraft:white_bed[facing=east,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 3 } }, - "minecraft:magenta_bed[facing=east,occupied=false,part=foot]": { + "minecraft:white_bed[facing=east,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 2, + "bed_color": 0, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 3 } }, - "minecraft:light_blue_bed[facing=north,occupied=true,part=head]": { + "minecraft:orange_bed[facing=north,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 2 } }, - "minecraft:light_blue_bed[facing=north,occupied=true,part=foot]": { + "minecraft:orange_bed[facing=north,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 2 } }, - "minecraft:light_blue_bed[facing=north,occupied=false,part=head]": { + "minecraft:orange_bed[facing=north,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 2 } }, - "minecraft:light_blue_bed[facing=north,occupied=false,part=foot]": { + "minecraft:orange_bed[facing=north,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 2 } }, - "minecraft:light_blue_bed[facing=south,occupied=true,part=head]": { + "minecraft:orange_bed[facing=south,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 0 } }, - "minecraft:light_blue_bed[facing=south,occupied=true,part=foot]": { + "minecraft:orange_bed[facing=south,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 0 } }, - "minecraft:light_blue_bed[facing=south,occupied=false,part=head]": { + "minecraft:orange_bed[facing=south,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 0 } }, - "minecraft:light_blue_bed[facing=south,occupied=false,part=foot]": { + "minecraft:orange_bed[facing=south,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 0 } }, - "minecraft:light_blue_bed[facing=west,occupied=true,part=head]": { + "minecraft:orange_bed[facing=west,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 1 } }, - "minecraft:light_blue_bed[facing=west,occupied=true,part=foot]": { + "minecraft:orange_bed[facing=west,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 1 } }, - "minecraft:light_blue_bed[facing=west,occupied=false,part=head]": { + "minecraft:orange_bed[facing=west,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 1 } }, - "minecraft:light_blue_bed[facing=west,occupied=false,part=foot]": { + "minecraft:orange_bed[facing=west,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 1 } }, - "minecraft:light_blue_bed[facing=east,occupied=true,part=head]": { + "minecraft:orange_bed[facing=east,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 3 } }, - "minecraft:light_blue_bed[facing=east,occupied=true,part=foot]": { + "minecraft:orange_bed[facing=east,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 3 } }, - "minecraft:light_blue_bed[facing=east,occupied=false,part=head]": { + "minecraft:orange_bed[facing=east,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 3 } }, - "minecraft:light_blue_bed[facing=east,occupied=false,part=foot]": { + "minecraft:orange_bed[facing=east,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 3, + "bed_color": 1, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 3 } }, - "minecraft:yellow_bed[facing=north,occupied=true,part=head]": { + "minecraft:magenta_bed[facing=north,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 2 } }, - "minecraft:yellow_bed[facing=north,occupied=true,part=foot]": { + "minecraft:magenta_bed[facing=north,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 2 } }, - "minecraft:yellow_bed[facing=north,occupied=false,part=head]": { + "minecraft:magenta_bed[facing=north,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 2 } }, - "minecraft:yellow_bed[facing=north,occupied=false,part=foot]": { + "minecraft:magenta_bed[facing=north,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 2 } }, - "minecraft:yellow_bed[facing=south,occupied=true,part=head]": { + "minecraft:magenta_bed[facing=south,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 0 } }, - "minecraft:yellow_bed[facing=south,occupied=true,part=foot]": { + "minecraft:magenta_bed[facing=south,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 0 } }, - "minecraft:yellow_bed[facing=south,occupied=false,part=head]": { + "minecraft:magenta_bed[facing=south,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 3, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 0 } }, - "minecraft:yellow_bed[facing=south,occupied=false,part=foot]": { + "minecraft:magenta_bed[facing=south,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 0 } }, - "minecraft:yellow_bed[facing=west,occupied=true,part=head]": { + "minecraft:magenta_bed[facing=west,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 1 } }, - "minecraft:yellow_bed[facing=west,occupied=true,part=foot]": { + "minecraft:magenta_bed[facing=west,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 1 } }, - "minecraft:yellow_bed[facing=west,occupied=false,part=head]": { + "minecraft:magenta_bed[facing=west,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 1 } }, - "minecraft:yellow_bed[facing=west,occupied=false,part=foot]": { + "minecraft:magenta_bed[facing=west,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 1 } }, - "minecraft:yellow_bed[facing=east,occupied=true,part=head]": { + "minecraft:magenta_bed[facing=east,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": true, "occupied_bit": true, "direction": 3 } }, - "minecraft:yellow_bed[facing=east,occupied=true,part=foot]": { + "minecraft:magenta_bed[facing=east,occupied=true,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": false, "occupied_bit": true, "direction": 3 } }, - "minecraft:yellow_bed[facing=east,occupied=false,part=head]": { + "minecraft:magenta_bed[facing=east,occupied=false,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 5, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": true, "occupied_bit": false, "direction": 3 } }, - "minecraft:yellow_bed[facing=east,occupied=false,part=foot]": { + "minecraft:magenta_bed[facing=east,occupied=false,part=foot]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 4, "piston_behavior": "destroy", "has_block_entity": true, "can_break_with_hand": true, - "bed_color": 4, + "bed_color": 2, "bedrock_states": { "head_piece_bit": false, "occupied_bit": false, "direction": 3 } }, - "minecraft:lime_bed[facing=north,occupied=true,part=head]": { + "minecraft:light_blue_bed[facing=north,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:light_blue_bed[facing=north,occupied=true,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 3, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:light_blue_bed[facing=north,occupied=false,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:light_blue_bed[facing=north,occupied=false,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 3, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:light_blue_bed[facing=south,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 3, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:light_blue_bed[facing=south,occupied=true,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:light_blue_bed[facing=south,occupied=false,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 3, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:light_blue_bed[facing=south,occupied=false,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:light_blue_bed[facing=west,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 4, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:light_blue_bed[facing=west,occupied=true,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 5, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:light_blue_bed[facing=west,occupied=false,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 4, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:light_blue_bed[facing=west,occupied=false,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 5, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:light_blue_bed[facing=east,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 5, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:light_blue_bed[facing=east,occupied=true,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 4, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:light_blue_bed[facing=east,occupied=false,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 5, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:light_blue_bed[facing=east,occupied=false,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 4, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 3, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:yellow_bed[facing=north,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:yellow_bed[facing=north,occupied=true,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 3, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:yellow_bed[facing=north,occupied=false,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:yellow_bed[facing=north,occupied=false,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 3, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:yellow_bed[facing=south,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 3, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:yellow_bed[facing=south,occupied=true,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:yellow_bed[facing=south,occupied=false,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 3, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:yellow_bed[facing=south,occupied=false,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 2, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:yellow_bed[facing=west,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 4, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:yellow_bed[facing=west,occupied=true,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 5, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:yellow_bed[facing=west,occupied=false,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 4, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:yellow_bed[facing=west,occupied=false,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 5, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:yellow_bed[facing=east,occupied=true,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 5, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:yellow_bed[facing=east,occupied=true,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 4, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:yellow_bed[facing=east,occupied=false,part=head]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 5, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:yellow_bed[facing=east,occupied=false,part=foot]": { + "bedrock_identifier": "minecraft:bed", + "block_hardness": 0.2, + "collision_index": 4, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 4, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:lime_bed[facing=north,occupied=true,part=head]": { "bedrock_identifier": "minecraft:bed", "block_hardness": 0.2, "collision_index": 2, @@ -12925,7 +15188,7 @@ } }, "minecraft:piston_head[facing=north,short=true,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 12, "piston_behavior": "block", @@ -12936,7 +15199,7 @@ } }, "minecraft:piston_head[facing=north,short=true,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 12, "piston_behavior": "block", @@ -12947,7 +15210,7 @@ } }, "minecraft:piston_head[facing=north,short=false,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 13, "piston_behavior": "block", @@ -12958,7 +15221,7 @@ } }, "minecraft:piston_head[facing=north,short=false,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 13, "piston_behavior": "block", @@ -12969,7 +15232,7 @@ } }, "minecraft:piston_head[facing=east,short=true,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 14, "piston_behavior": "block", @@ -12980,7 +15243,7 @@ } }, "minecraft:piston_head[facing=east,short=true,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 14, "piston_behavior": "block", @@ -12991,7 +15254,7 @@ } }, "minecraft:piston_head[facing=east,short=false,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 15, "piston_behavior": "block", @@ -13002,7 +15265,7 @@ } }, "minecraft:piston_head[facing=east,short=false,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 15, "piston_behavior": "block", @@ -13013,7 +15276,7 @@ } }, "minecraft:piston_head[facing=south,short=true,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 16, "piston_behavior": "block", @@ -13024,7 +15287,7 @@ } }, "minecraft:piston_head[facing=south,short=true,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 16, "piston_behavior": "block", @@ -13035,7 +15298,7 @@ } }, "minecraft:piston_head[facing=south,short=false,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 17, "piston_behavior": "block", @@ -13046,7 +15309,7 @@ } }, "minecraft:piston_head[facing=south,short=false,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 17, "piston_behavior": "block", @@ -13057,7 +15320,7 @@ } }, "minecraft:piston_head[facing=west,short=true,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 18, "piston_behavior": "block", @@ -13068,7 +15331,7 @@ } }, "minecraft:piston_head[facing=west,short=true,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 18, "piston_behavior": "block", @@ -13079,7 +15342,7 @@ } }, "minecraft:piston_head[facing=west,short=false,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 19, "piston_behavior": "block", @@ -13090,7 +15353,7 @@ } }, "minecraft:piston_head[facing=west,short=false,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 19, "piston_behavior": "block", @@ -13101,7 +15364,7 @@ } }, "minecraft:piston_head[facing=up,short=true,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 20, "piston_behavior": "block", @@ -13112,7 +15375,7 @@ } }, "minecraft:piston_head[facing=up,short=true,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 20, "piston_behavior": "block", @@ -13123,7 +15386,7 @@ } }, "minecraft:piston_head[facing=up,short=false,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 21, "piston_behavior": "block", @@ -13134,7 +15397,7 @@ } }, "minecraft:piston_head[facing=up,short=false,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 21, "piston_behavior": "block", @@ -13145,7 +15408,7 @@ } }, "minecraft:piston_head[facing=down,short=true,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 22, "piston_behavior": "block", @@ -13156,7 +15419,7 @@ } }, "minecraft:piston_head[facing=down,short=true,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 22, "piston_behavior": "block", @@ -13167,7 +15430,7 @@ } }, "minecraft:piston_head[facing=down,short=false,type=normal]": { - "bedrock_identifier": "minecraft:pistonArmCollision", + "bedrock_identifier": "minecraft:piston_arm_collision", "block_hardness": 1.5, "collision_index": 23, "piston_behavior": "block", @@ -13178,7 +15441,7 @@ } }, "minecraft:piston_head[facing=down,short=false,type=sticky]": { - "bedrock_identifier": "minecraft:stickyPistonArmCollision", + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", "block_hardness": 1.5, "collision_index": 23, "piston_behavior": "block", @@ -13333,7 +15596,7 @@ } }, "minecraft:moving_piston[facing=north,type=normal]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13342,7 +15605,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=north,type=sticky]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13351,7 +15614,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=east,type=normal]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13360,7 +15623,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=east,type=sticky]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13369,7 +15632,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=south,type=normal]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13378,7 +15641,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=south,type=sticky]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13387,7 +15650,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=west,type=normal]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13396,7 +15659,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=west,type=sticky]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13405,7 +15668,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=up,type=normal]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13414,7 +15677,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=up,type=sticky]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13423,7 +15686,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=down,type=normal]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -13432,7 +15695,7 @@ "can_break_with_hand": true }, "minecraft:moving_piston[facing=down,type=sticky]": { - "bedrock_identifier": "minecraft:movingBlock", + "bedrock_identifier": "minecraft:moving_block", "block_hardness": -1.0, "collision_index": 0, "piston_behavior": "block", @@ -36362,6 +38625,326 @@ "ground_sign_direction": 15 } }, + "minecraft:mangrove_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:mangrove_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:mangrove_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:mangrove_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:mangrove_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:mangrove_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:mangrove_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:mangrove_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:mangrove_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:mangrove_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:mangrove_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:mangrove_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:mangrove_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:mangrove_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:mangrove_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:mangrove_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:mangrove_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:mangrove_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:mangrove_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:mangrove_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:mangrove_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:mangrove_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:mangrove_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:mangrove_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:mangrove_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:mangrove_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:mangrove_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:mangrove_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:mangrove_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:mangrove_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:mangrove_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:mangrove_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_standing_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { "bedrock_identifier": "minecraft:wooden_door", "block_hardness": 3.0, @@ -38782,6 +41365,94 @@ "facing_direction": 5 } }, + "minecraft:mangrove_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:mangrove_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:mangrove_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:mangrove_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:mangrove_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:mangrove_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:mangrove_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:mangrove_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, "minecraft:lever[face=floor,facing=north,powered=true]": { "bedrock_identifier": "minecraft:lever", "block_hardness": 0.5, @@ -40018,6 +42689,26 @@ "redstone_signal": 0 } }, + "minecraft:mangrove_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:mangrove_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:mangrove_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:mangrove_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, "minecraft:redstone_ore[lit=true]": { "bedrock_identifier": "minecraft:lit_redstone_ore", "block_hardness": 3.0, @@ -40031,7 +42722,7 @@ "can_break_with_hand": false }, "minecraft:deepslate_redstone_ore[lit=true]": { - "bedrock_identifier": "minecraft:deepslate_redstone_ore", + "bedrock_identifier": "minecraft:lit_deepslate_redstone_ore", "block_hardness": 4.5, "collision_index": 1, "can_break_with_hand": false @@ -46544,6 +49235,710 @@ "direction": 0 } }, + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 88, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "block_hardness": 3.0, + "collision_index": 89, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, "minecraft:stone_bricks": { "bedrock_identifier": "minecraft:stonebrick", "block_hardness": 1.5, @@ -46580,6 +49975,18 @@ "stone_brick_type": "chiseled" } }, + "minecraft:packed_mud": { + "bedrock_identifier": "minecraft:packed_mud", + "block_hardness": 1.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:mud_bricks": { + "bedrock_identifier": "minecraft:mud_bricks", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, "minecraft:infested_stone": { "bedrock_identifier": "minecraft:monster_egg", "block_hardness": 0.75, @@ -49432,7 +52839,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 47 + "multi_face_direction_bits": 55 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": { @@ -49452,7 +52859,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 47 + "multi_face_direction_bits": 55 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": { @@ -49472,7 +52879,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 45 + "multi_face_direction_bits": 53 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": { @@ -49492,7 +52899,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 45 + "multi_face_direction_bits": 53 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": { @@ -49502,7 +52909,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 55 + "multi_face_direction_bits": 59 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": { @@ -49512,7 +52919,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 39 + "multi_face_direction_bits": 51 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": { @@ -49522,7 +52929,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 55 + "multi_face_direction_bits": 59 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": { @@ -49532,7 +52939,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 39 + "multi_face_direction_bits": 51 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": { @@ -49542,7 +52949,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 53 + "multi_face_direction_bits": 57 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": { @@ -49552,7 +52959,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 37 + "multi_face_direction_bits": 49 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": { @@ -49562,7 +52969,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 53 + "multi_face_direction_bits": 57 } }, "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": { @@ -49572,7 +52979,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 37 + "multi_face_direction_bits": 49 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": { @@ -49582,7 +52989,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 59 + "multi_face_direction_bits": 47 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": { @@ -49592,7 +52999,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 43 + "multi_face_direction_bits": 39 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": { @@ -49602,7 +53009,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 59 + "multi_face_direction_bits": 47 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": { @@ -49612,7 +53019,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 43 + "multi_face_direction_bits": 39 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": { @@ -49622,7 +53029,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 57 + "multi_face_direction_bits": 45 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": { @@ -49632,7 +53039,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 41 + "multi_face_direction_bits": 37 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": { @@ -49642,7 +53049,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 57 + "multi_face_direction_bits": 45 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": { @@ -49652,7 +53059,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 41 + "multi_face_direction_bits": 37 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": { @@ -49662,7 +53069,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 51 + "multi_face_direction_bits": 43 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": { @@ -49682,7 +53089,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 51 + "multi_face_direction_bits": 43 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": { @@ -49702,7 +53109,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 49 + "multi_face_direction_bits": 41 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": { @@ -49722,7 +53129,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 49 + "multi_face_direction_bits": 41 } }, "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": { @@ -49752,7 +53159,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 15 + "multi_face_direction_bits": 23 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": { @@ -49772,7 +53179,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 15 + "multi_face_direction_bits": 23 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": { @@ -49792,7 +53199,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 13 + "multi_face_direction_bits": 21 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": { @@ -49812,7 +53219,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 13 + "multi_face_direction_bits": 21 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": { @@ -49822,7 +53229,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 23 + "multi_face_direction_bits": 27 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": { @@ -49832,7 +53239,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 7 + "multi_face_direction_bits": 19 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": { @@ -49842,7 +53249,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 23 + "multi_face_direction_bits": 27 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": { @@ -49852,7 +53259,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 7 + "multi_face_direction_bits": 19 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": { @@ -49862,7 +53269,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 21 + "multi_face_direction_bits": 25 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": { @@ -49872,7 +53279,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 5 + "multi_face_direction_bits": 17 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": { @@ -49882,7 +53289,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 21 + "multi_face_direction_bits": 25 } }, "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": { @@ -49892,7 +53299,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 5 + "multi_face_direction_bits": 17 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": { @@ -49902,7 +53309,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 27 + "multi_face_direction_bits": 15 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": { @@ -49912,7 +53319,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 11 + "multi_face_direction_bits": 7 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": { @@ -49922,7 +53329,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 27 + "multi_face_direction_bits": 15 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": { @@ -49932,7 +53339,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 11 + "multi_face_direction_bits": 7 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": { @@ -49942,7 +53349,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 25 + "multi_face_direction_bits": 13 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": { @@ -49952,7 +53359,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 9 + "multi_face_direction_bits": 5 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": { @@ -49962,7 +53369,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 25 + "multi_face_direction_bits": 13 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": { @@ -49972,7 +53379,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 9 + "multi_face_direction_bits": 5 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": { @@ -49982,7 +53389,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 19 + "multi_face_direction_bits": 11 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": { @@ -50002,7 +53409,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 19 + "multi_face_direction_bits": 11 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": { @@ -50022,7 +53429,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 17 + "multi_face_direction_bits": 9 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": { @@ -50042,7 +53449,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 17 + "multi_face_direction_bits": 9 } }, "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": { @@ -50072,7 +53479,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 46 + "multi_face_direction_bits": 54 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": { @@ -50092,7 +53499,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 46 + "multi_face_direction_bits": 54 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": { @@ -50112,7 +53519,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 44 + "multi_face_direction_bits": 52 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": { @@ -50132,7 +53539,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 44 + "multi_face_direction_bits": 52 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": { @@ -50142,7 +53549,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 54 + "multi_face_direction_bits": 58 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": { @@ -50152,7 +53559,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 38 + "multi_face_direction_bits": 50 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": { @@ -50162,7 +53569,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 54 + "multi_face_direction_bits": 58 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": { @@ -50172,7 +53579,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 38 + "multi_face_direction_bits": 50 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": { @@ -50182,7 +53589,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 52 + "multi_face_direction_bits": 56 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": { @@ -50192,7 +53599,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 36 + "multi_face_direction_bits": 48 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": { @@ -50202,7 +53609,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 52 + "multi_face_direction_bits": 56 } }, "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": { @@ -50212,7 +53619,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 36 + "multi_face_direction_bits": 48 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": { @@ -50222,7 +53629,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 58 + "multi_face_direction_bits": 46 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": { @@ -50232,7 +53639,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 42 + "multi_face_direction_bits": 38 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": { @@ -50242,7 +53649,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 58 + "multi_face_direction_bits": 46 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": { @@ -50252,7 +53659,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 42 + "multi_face_direction_bits": 38 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": { @@ -50262,7 +53669,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 56 + "multi_face_direction_bits": 44 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": { @@ -50272,7 +53679,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 40 + "multi_face_direction_bits": 36 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": { @@ -50282,7 +53689,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 56 + "multi_face_direction_bits": 44 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": { @@ -50292,7 +53699,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 40 + "multi_face_direction_bits": 36 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": { @@ -50302,7 +53709,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 50 + "multi_face_direction_bits": 42 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": { @@ -50322,7 +53729,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 50 + "multi_face_direction_bits": 42 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": { @@ -50342,7 +53749,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 48 + "multi_face_direction_bits": 40 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": { @@ -50362,7 +53769,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 48 + "multi_face_direction_bits": 40 } }, "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": { @@ -50392,7 +53799,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 14 + "multi_face_direction_bits": 22 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": { @@ -50412,7 +53819,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 14 + "multi_face_direction_bits": 22 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": { @@ -50432,7 +53839,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 12 + "multi_face_direction_bits": 20 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": { @@ -50452,7 +53859,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 12 + "multi_face_direction_bits": 20 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": { @@ -50462,7 +53869,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 22 + "multi_face_direction_bits": 26 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": { @@ -50472,7 +53879,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 6 + "multi_face_direction_bits": 18 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": { @@ -50482,7 +53889,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 22 + "multi_face_direction_bits": 26 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": { @@ -50492,7 +53899,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 6 + "multi_face_direction_bits": 18 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": { @@ -50502,7 +53909,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 20 + "multi_face_direction_bits": 24 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": { @@ -50512,7 +53919,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 4 + "multi_face_direction_bits": 16 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": { @@ -50522,7 +53929,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 20 + "multi_face_direction_bits": 24 } }, "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": { @@ -50532,7 +53939,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 4 + "multi_face_direction_bits": 16 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": { @@ -50542,7 +53949,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 26 + "multi_face_direction_bits": 14 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": { @@ -50552,7 +53959,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 10 + "multi_face_direction_bits": 6 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": { @@ -50562,7 +53969,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 26 + "multi_face_direction_bits": 14 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": { @@ -50572,7 +53979,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 10 + "multi_face_direction_bits": 6 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": { @@ -50582,7 +53989,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 24 + "multi_face_direction_bits": 12 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": { @@ -50592,7 +53999,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 8 + "multi_face_direction_bits": 4 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": { @@ -50602,7 +54009,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 24 + "multi_face_direction_bits": 12 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": { @@ -50612,7 +54019,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 8 + "multi_face_direction_bits": 4 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": { @@ -50622,7 +54029,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 18 + "multi_face_direction_bits": 10 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": { @@ -50642,7 +54049,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 18 + "multi_face_direction_bits": 10 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": { @@ -50662,7 +54069,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 16 + "multi_face_direction_bits": 8 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": { @@ -50682,7 +54089,7 @@ "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "multi_face_direction_bits": 16 + "multi_face_direction_bits": 8 } }, "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": { @@ -52647,6 +56054,812 @@ "weirdo_direction": 0 } }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mycelium[snowy=true]": { + "bedrock_identifier": "minecraft:mycelium", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true + }, "minecraft:mycelium[snowy=false]": { "bedrock_identifier": "minecraft:mycelium", "block_hardness": 0.6, @@ -55231,7 +59444,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55245,7 +59458,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55259,7 +59472,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55273,7 +59486,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55287,7 +59500,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55301,7 +59514,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55315,7 +59528,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55329,7 +59542,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55343,7 +59556,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55357,7 +59570,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55371,7 +59584,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55385,7 +59598,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55399,7 +59612,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55413,7 +59626,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55427,7 +59640,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55441,7 +59654,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55455,7 +59668,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55469,7 +59682,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55483,7 +59696,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55497,7 +59710,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55511,7 +59724,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55525,7 +59738,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55539,7 +59752,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55553,7 +59766,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55567,7 +59780,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55581,7 +59794,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55595,7 +59808,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55609,7 +59822,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55623,7 +59836,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55637,7 +59850,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55651,7 +59864,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55665,7 +59878,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55679,7 +59892,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55693,7 +59906,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55707,7 +59920,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55721,7 +59934,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55735,7 +59948,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55749,7 +59962,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55763,7 +59976,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55777,7 +59990,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55791,7 +60004,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55805,7 +60018,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55819,7 +60032,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55833,7 +60046,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55847,7 +60060,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55861,7 +60074,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55875,7 +60088,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55889,7 +60102,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55903,7 +60116,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55917,7 +60130,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55931,7 +60144,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55945,7 +60158,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55959,7 +60172,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55973,7 +60186,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -55987,7 +60200,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56001,7 +60214,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56015,7 +60228,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56029,7 +60242,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56043,7 +60256,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56057,7 +60270,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56071,7 +60284,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56085,7 +60298,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56099,7 +60312,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56113,7 +60326,7 @@ } }, "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56127,7 +60340,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56141,7 +60354,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56155,7 +60368,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56169,7 +60382,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56183,7 +60396,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56197,7 +60410,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56211,7 +60424,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56225,7 +60438,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56239,7 +60452,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56253,7 +60466,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56267,7 +60480,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56281,7 +60494,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56295,7 +60508,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56309,7 +60522,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56323,7 +60536,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56337,7 +60550,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56351,7 +60564,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56365,7 +60578,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56379,7 +60592,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56393,7 +60606,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56407,7 +60620,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56421,7 +60634,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56435,7 +60648,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56449,7 +60662,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56463,7 +60676,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56477,7 +60690,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56491,7 +60704,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56505,7 +60718,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56519,7 +60732,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56533,7 +60746,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56547,7 +60760,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56561,7 +60774,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56575,7 +60788,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56589,7 +60802,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56603,7 +60816,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56617,7 +60830,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56631,7 +60844,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56645,7 +60858,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56659,7 +60872,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56673,7 +60886,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56687,7 +60900,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56701,7 +60914,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56715,7 +60928,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56729,7 +60942,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56743,7 +60956,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56757,7 +60970,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56771,7 +60984,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56785,7 +60998,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56799,7 +61012,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56813,7 +61026,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56827,7 +61040,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56841,7 +61054,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56855,7 +61068,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56869,7 +61082,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56883,7 +61096,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56897,7 +61110,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56911,7 +61124,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56925,7 +61138,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56939,7 +61152,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56953,7 +61166,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56967,7 +61180,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56981,7 +61194,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -56995,7 +61208,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -57009,7 +61222,7 @@ } }, "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": { - "bedrock_identifier": "minecraft:tripWire", + "bedrock_identifier": "minecraft:trip_wire", "block_hardness": 0.0, "collision_index": 0, "piston_behavior": "destroy", @@ -68715,6 +72928,17 @@ "update_bit": false } }, + "minecraft:potted_mangrove_propagule": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 158, + "piston_behavior": "destroy", + "pick_item": "minecraft:mangrove_propagule", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, "minecraft:potted_fern": { "bedrock_identifier": "minecraft:flower_pot", "block_hardness": 0.0, @@ -70673,6 +74897,270 @@ "button_pressed_bit": false } }, + "minecraft:mangrove_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "button_pressed_bit": false + } + }, + "minecraft:mangrove_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "button_pressed_bit": true + } + }, + "minecraft:mangrove_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_button", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "button_pressed_bit": false + } + }, "minecraft:skeleton_skull[rotation=0]": { "bedrock_identifier": "minecraft:skull", "block_hardness": 1.0, @@ -70683,8 +75171,7 @@ "skull_rotation": 0, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=1]": { @@ -70697,8 +75184,7 @@ "skull_rotation": 1, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=2]": { @@ -70711,8 +75197,7 @@ "skull_rotation": 2, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=3]": { @@ -70725,8 +75210,7 @@ "skull_rotation": 3, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=4]": { @@ -70739,8 +75223,7 @@ "skull_rotation": 4, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=5]": { @@ -70753,8 +75236,7 @@ "skull_rotation": 5, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=6]": { @@ -70767,8 +75249,7 @@ "skull_rotation": 6, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=7]": { @@ -70781,8 +75262,7 @@ "skull_rotation": 7, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=8]": { @@ -70795,8 +75275,7 @@ "skull_rotation": 8, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=9]": { @@ -70809,8 +75288,7 @@ "skull_rotation": 9, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=10]": { @@ -70823,8 +75301,7 @@ "skull_rotation": 10, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=11]": { @@ -70837,8 +75314,7 @@ "skull_rotation": 11, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=12]": { @@ -70851,8 +75327,7 @@ "skull_rotation": 12, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=13]": { @@ -70865,8 +75340,7 @@ "skull_rotation": 13, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=14]": { @@ -70879,8 +75353,7 @@ "skull_rotation": 14, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_skull[rotation=15]": { @@ -70893,8 +75366,7 @@ "skull_rotation": 15, "variation": 0, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:skeleton_wall_skull[facing=north]": { @@ -70907,8 +75379,7 @@ "can_break_with_hand": true, "variation": 0, "bedrock_states": { - "facing_direction": 2, - "no_drop_bit": false + "facing_direction": 2 } }, "minecraft:skeleton_wall_skull[facing=south]": { @@ -70921,8 +75392,7 @@ "can_break_with_hand": true, "variation": 0, "bedrock_states": { - "facing_direction": 3, - "no_drop_bit": false + "facing_direction": 3 } }, "minecraft:skeleton_wall_skull[facing=west]": { @@ -70935,8 +75405,7 @@ "can_break_with_hand": true, "variation": 0, "bedrock_states": { - "facing_direction": 4, - "no_drop_bit": false + "facing_direction": 4 } }, "minecraft:skeleton_wall_skull[facing=east]": { @@ -70949,8 +75418,7 @@ "can_break_with_hand": true, "variation": 0, "bedrock_states": { - "facing_direction": 5, - "no_drop_bit": false + "facing_direction": 5 } }, "minecraft:wither_skeleton_skull[rotation=0]": { @@ -70963,8 +75431,7 @@ "skull_rotation": 0, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=1]": { @@ -70977,8 +75444,7 @@ "skull_rotation": 1, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=2]": { @@ -70991,8 +75457,7 @@ "skull_rotation": 2, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=3]": { @@ -71005,8 +75470,7 @@ "skull_rotation": 3, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=4]": { @@ -71019,8 +75483,7 @@ "skull_rotation": 4, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=5]": { @@ -71033,8 +75496,7 @@ "skull_rotation": 5, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=6]": { @@ -71047,8 +75509,7 @@ "skull_rotation": 6, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=7]": { @@ -71061,8 +75522,7 @@ "skull_rotation": 7, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=8]": { @@ -71075,8 +75535,7 @@ "skull_rotation": 8, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=9]": { @@ -71089,8 +75548,7 @@ "skull_rotation": 9, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=10]": { @@ -71103,8 +75561,7 @@ "skull_rotation": 10, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=11]": { @@ -71117,8 +75574,7 @@ "skull_rotation": 11, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=12]": { @@ -71131,8 +75587,7 @@ "skull_rotation": 12, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=13]": { @@ -71145,8 +75600,7 @@ "skull_rotation": 13, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=14]": { @@ -71159,8 +75613,7 @@ "skull_rotation": 14, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_skull[rotation=15]": { @@ -71173,8 +75626,7 @@ "skull_rotation": 15, "variation": 1, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:wither_skeleton_wall_skull[facing=north]": { @@ -71187,8 +75639,7 @@ "can_break_with_hand": true, "variation": 1, "bedrock_states": { - "facing_direction": 2, - "no_drop_bit": false + "facing_direction": 2 } }, "minecraft:wither_skeleton_wall_skull[facing=south]": { @@ -71201,8 +75652,7 @@ "can_break_with_hand": true, "variation": 1, "bedrock_states": { - "facing_direction": 3, - "no_drop_bit": false + "facing_direction": 3 } }, "minecraft:wither_skeleton_wall_skull[facing=west]": { @@ -71215,8 +75665,7 @@ "can_break_with_hand": true, "variation": 1, "bedrock_states": { - "facing_direction": 4, - "no_drop_bit": false + "facing_direction": 4 } }, "minecraft:wither_skeleton_wall_skull[facing=east]": { @@ -71229,8 +75678,7 @@ "can_break_with_hand": true, "variation": 1, "bedrock_states": { - "facing_direction": 5, - "no_drop_bit": false + "facing_direction": 5 } }, "minecraft:zombie_head[rotation=0]": { @@ -71243,8 +75691,7 @@ "skull_rotation": 0, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=1]": { @@ -71257,8 +75704,7 @@ "skull_rotation": 1, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=2]": { @@ -71271,8 +75717,7 @@ "skull_rotation": 2, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=3]": { @@ -71285,8 +75730,7 @@ "skull_rotation": 3, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=4]": { @@ -71299,8 +75743,7 @@ "skull_rotation": 4, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=5]": { @@ -71313,8 +75756,7 @@ "skull_rotation": 5, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=6]": { @@ -71327,8 +75769,7 @@ "skull_rotation": 6, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=7]": { @@ -71341,8 +75782,7 @@ "skull_rotation": 7, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=8]": { @@ -71355,8 +75795,7 @@ "skull_rotation": 8, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=9]": { @@ -71369,8 +75808,7 @@ "skull_rotation": 9, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=10]": { @@ -71383,8 +75821,7 @@ "skull_rotation": 10, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=11]": { @@ -71397,8 +75834,7 @@ "skull_rotation": 11, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=12]": { @@ -71411,8 +75847,7 @@ "skull_rotation": 12, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=13]": { @@ -71425,8 +75860,7 @@ "skull_rotation": 13, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=14]": { @@ -71439,8 +75873,7 @@ "skull_rotation": 14, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_head[rotation=15]": { @@ -71453,8 +75886,7 @@ "skull_rotation": 15, "variation": 2, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:zombie_wall_head[facing=north]": { @@ -71467,8 +75899,7 @@ "can_break_with_hand": true, "variation": 2, "bedrock_states": { - "facing_direction": 2, - "no_drop_bit": false + "facing_direction": 2 } }, "minecraft:zombie_wall_head[facing=south]": { @@ -71481,8 +75912,7 @@ "can_break_with_hand": true, "variation": 2, "bedrock_states": { - "facing_direction": 3, - "no_drop_bit": false + "facing_direction": 3 } }, "minecraft:zombie_wall_head[facing=west]": { @@ -71495,8 +75925,7 @@ "can_break_with_hand": true, "variation": 2, "bedrock_states": { - "facing_direction": 4, - "no_drop_bit": false + "facing_direction": 4 } }, "minecraft:zombie_wall_head[facing=east]": { @@ -71509,8 +75938,7 @@ "can_break_with_hand": true, "variation": 2, "bedrock_states": { - "facing_direction": 5, - "no_drop_bit": false + "facing_direction": 5 } }, "minecraft:player_head[rotation=0]": { @@ -71523,8 +75951,7 @@ "skull_rotation": 0, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=1]": { @@ -71537,8 +75964,7 @@ "skull_rotation": 1, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=2]": { @@ -71551,8 +75977,7 @@ "skull_rotation": 2, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=3]": { @@ -71565,8 +75990,7 @@ "skull_rotation": 3, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=4]": { @@ -71579,8 +76003,7 @@ "skull_rotation": 4, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=5]": { @@ -71593,8 +76016,7 @@ "skull_rotation": 5, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=6]": { @@ -71607,8 +76029,7 @@ "skull_rotation": 6, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=7]": { @@ -71621,8 +76042,7 @@ "skull_rotation": 7, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=8]": { @@ -71635,8 +76055,7 @@ "skull_rotation": 8, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=9]": { @@ -71649,8 +76068,7 @@ "skull_rotation": 9, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=10]": { @@ -71663,8 +76081,7 @@ "skull_rotation": 10, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=11]": { @@ -71677,8 +76094,7 @@ "skull_rotation": 11, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=12]": { @@ -71691,8 +76107,7 @@ "skull_rotation": 12, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=13]": { @@ -71705,8 +76120,7 @@ "skull_rotation": 13, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=14]": { @@ -71719,8 +76133,7 @@ "skull_rotation": 14, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_head[rotation=15]": { @@ -71733,8 +76146,7 @@ "skull_rotation": 15, "variation": 3, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:player_wall_head[facing=north]": { @@ -71747,8 +76159,7 @@ "can_break_with_hand": true, "variation": 3, "bedrock_states": { - "facing_direction": 2, - "no_drop_bit": false + "facing_direction": 2 } }, "minecraft:player_wall_head[facing=south]": { @@ -71761,8 +76172,7 @@ "can_break_with_hand": true, "variation": 3, "bedrock_states": { - "facing_direction": 3, - "no_drop_bit": false + "facing_direction": 3 } }, "minecraft:player_wall_head[facing=west]": { @@ -71775,8 +76185,7 @@ "can_break_with_hand": true, "variation": 3, "bedrock_states": { - "facing_direction": 4, - "no_drop_bit": false + "facing_direction": 4 } }, "minecraft:player_wall_head[facing=east]": { @@ -71789,8 +76198,7 @@ "can_break_with_hand": true, "variation": 3, "bedrock_states": { - "facing_direction": 5, - "no_drop_bit": false + "facing_direction": 5 } }, "minecraft:creeper_head[rotation=0]": { @@ -71803,8 +76211,7 @@ "skull_rotation": 0, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=1]": { @@ -71817,8 +76224,7 @@ "skull_rotation": 1, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=2]": { @@ -71831,8 +76237,7 @@ "skull_rotation": 2, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=3]": { @@ -71845,8 +76250,7 @@ "skull_rotation": 3, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=4]": { @@ -71859,8 +76263,7 @@ "skull_rotation": 4, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=5]": { @@ -71873,8 +76276,7 @@ "skull_rotation": 5, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=6]": { @@ -71887,8 +76289,7 @@ "skull_rotation": 6, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=7]": { @@ -71901,8 +76302,7 @@ "skull_rotation": 7, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=8]": { @@ -71915,8 +76315,7 @@ "skull_rotation": 8, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=9]": { @@ -71929,8 +76328,7 @@ "skull_rotation": 9, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=10]": { @@ -71943,8 +76341,7 @@ "skull_rotation": 10, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=11]": { @@ -71957,8 +76354,7 @@ "skull_rotation": 11, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=12]": { @@ -71971,8 +76367,7 @@ "skull_rotation": 12, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=13]": { @@ -71985,8 +76380,7 @@ "skull_rotation": 13, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=14]": { @@ -71999,8 +76393,7 @@ "skull_rotation": 14, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_head[rotation=15]": { @@ -72013,8 +76406,7 @@ "skull_rotation": 15, "variation": 4, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:creeper_wall_head[facing=north]": { @@ -72027,8 +76419,7 @@ "can_break_with_hand": true, "variation": 4, "bedrock_states": { - "facing_direction": 2, - "no_drop_bit": false + "facing_direction": 2 } }, "minecraft:creeper_wall_head[facing=south]": { @@ -72041,8 +76432,7 @@ "can_break_with_hand": true, "variation": 4, "bedrock_states": { - "facing_direction": 3, - "no_drop_bit": false + "facing_direction": 3 } }, "minecraft:creeper_wall_head[facing=west]": { @@ -72055,8 +76445,7 @@ "can_break_with_hand": true, "variation": 4, "bedrock_states": { - "facing_direction": 4, - "no_drop_bit": false + "facing_direction": 4 } }, "minecraft:creeper_wall_head[facing=east]": { @@ -72069,8 +76458,7 @@ "can_break_with_hand": true, "variation": 4, "bedrock_states": { - "facing_direction": 5, - "no_drop_bit": false + "facing_direction": 5 } }, "minecraft:dragon_head[rotation=0]": { @@ -72083,8 +76471,7 @@ "skull_rotation": 0, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=1]": { @@ -72097,8 +76484,7 @@ "skull_rotation": 1, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=2]": { @@ -72111,8 +76497,7 @@ "skull_rotation": 2, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=3]": { @@ -72125,8 +76510,7 @@ "skull_rotation": 3, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=4]": { @@ -72139,8 +76523,7 @@ "skull_rotation": 4, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=5]": { @@ -72153,8 +76536,7 @@ "skull_rotation": 5, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=6]": { @@ -72167,8 +76549,7 @@ "skull_rotation": 6, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=7]": { @@ -72181,8 +76562,7 @@ "skull_rotation": 7, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=8]": { @@ -72195,8 +76575,7 @@ "skull_rotation": 8, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=9]": { @@ -72209,8 +76588,7 @@ "skull_rotation": 9, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=10]": { @@ -72223,8 +76601,7 @@ "skull_rotation": 10, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=11]": { @@ -72237,8 +76614,7 @@ "skull_rotation": 11, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=12]": { @@ -72251,8 +76627,7 @@ "skull_rotation": 12, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=13]": { @@ -72265,8 +76640,7 @@ "skull_rotation": 13, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=14]": { @@ -72279,8 +76653,7 @@ "skull_rotation": 14, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_head[rotation=15]": { @@ -72293,8 +76666,7 @@ "skull_rotation": 15, "variation": 5, "bedrock_states": { - "facing_direction": 1, - "no_drop_bit": false + "facing_direction": 1 } }, "minecraft:dragon_wall_head[facing=north]": { @@ -72307,8 +76679,7 @@ "can_break_with_hand": true, "variation": 5, "bedrock_states": { - "facing_direction": 2, - "no_drop_bit": false + "facing_direction": 2 } }, "minecraft:dragon_wall_head[facing=south]": { @@ -72321,8 +76692,7 @@ "can_break_with_hand": true, "variation": 5, "bedrock_states": { - "facing_direction": 3, - "no_drop_bit": false + "facing_direction": 3 } }, "minecraft:dragon_wall_head[facing=west]": { @@ -72335,8 +76705,7 @@ "can_break_with_hand": true, "variation": 5, "bedrock_states": { - "facing_direction": 4, - "no_drop_bit": false + "facing_direction": 4 } }, "minecraft:dragon_wall_head[facing=east]": { @@ -72349,8 +76718,7 @@ "can_break_with_hand": true, "variation": 5, "bedrock_states": { - "facing_direction": 5, - "no_drop_bit": false + "facing_direction": 5 } }, "minecraft:anvil[facing=north]": { @@ -81309,6 +85677,806 @@ "weirdo_direction": 0 } }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, "minecraft:slime_block": { "bedrock_identifier": "minecraft:slime", "block_hardness": 0.0, @@ -84742,7 +89910,7 @@ } }, "minecraft:prismarine_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -84752,7 +89920,7 @@ } }, "minecraft:prismarine_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -84762,7 +89930,7 @@ } }, "minecraft:prismarine_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -84772,7 +89940,7 @@ } }, "minecraft:prismarine_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -84782,7 +89950,7 @@ } }, "minecraft:prismarine_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -84792,7 +89960,7 @@ } }, "minecraft:prismarine_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -84802,7 +89970,7 @@ } }, "minecraft:prismarine_brick_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -84812,7 +89980,7 @@ } }, "minecraft:prismarine_brick_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -84822,7 +89990,7 @@ } }, "minecraft:prismarine_brick_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -84832,7 +90000,7 @@ } }, "minecraft:prismarine_brick_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -84842,7 +90010,7 @@ } }, "minecraft:prismarine_brick_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -84852,7 +90020,7 @@ } }, "minecraft:prismarine_brick_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -84862,7 +90030,7 @@ } }, "minecraft:dark_prismarine_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -84872,7 +90040,7 @@ } }, "minecraft:dark_prismarine_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -84882,7 +90050,7 @@ } }, "minecraft:dark_prismarine_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -84892,7 +90060,7 @@ } }, "minecraft:dark_prismarine_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -84902,7 +90070,7 @@ } }, "minecraft:dark_prismarine_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -84912,7 +90080,7 @@ } }, "minecraft:dark_prismarine_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -84922,7 +90090,7 @@ } }, "minecraft:sea_lantern": { - "bedrock_identifier": "minecraft:seaLantern", + "bedrock_identifier": "minecraft:sea_lantern", "block_hardness": 0.3, "collision_index": 1, "can_break_with_hand": true @@ -89958,8 +95126,62 @@ "wood_type": "dark_oak" } }, + "minecraft:mangrove_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_slab", + "block_hardness": 2.0, + "collision_index": 171, + "can_break_with_hand": true, + "bedrock_states": { + "top_slot_bit": true + } + }, + "minecraft:mangrove_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_slab", + "block_hardness": 2.0, + "collision_index": 171, + "can_break_with_hand": true, + "bedrock_states": { + "top_slot_bit": true + } + }, + "minecraft:mangrove_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_slab", + "block_hardness": 2.0, + "collision_index": 61, + "can_break_with_hand": true, + "bedrock_states": { + "top_slot_bit": false + } + }, + "minecraft:mangrove_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_slab", + "block_hardness": 2.0, + "collision_index": 61, + "can_break_with_hand": true, + "bedrock_states": { + "top_slot_bit": false + } + }, + "minecraft:mangrove_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "top_slot_bit": false + } + }, + "minecraft:mangrove_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "top_slot_bit": false + } + }, "minecraft:stone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -89969,7 +95191,7 @@ } }, "minecraft:stone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -89979,7 +95201,7 @@ } }, "minecraft:stone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -89989,7 +95211,7 @@ } }, "minecraft:stone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -89999,7 +95221,7 @@ } }, "minecraft:stone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90009,7 +95231,7 @@ } }, "minecraft:stone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90019,7 +95241,7 @@ } }, "minecraft:smooth_stone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90029,7 +95251,7 @@ } }, "minecraft:smooth_stone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90039,7 +95261,7 @@ } }, "minecraft:smooth_stone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90049,7 +95271,7 @@ } }, "minecraft:smooth_stone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90059,7 +95281,7 @@ } }, "minecraft:smooth_stone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90069,7 +95291,7 @@ } }, "minecraft:smooth_stone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90079,7 +95301,7 @@ } }, "minecraft:sandstone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90089,7 +95311,7 @@ } }, "minecraft:sandstone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90099,7 +95321,7 @@ } }, "minecraft:sandstone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90109,7 +95331,7 @@ } }, "minecraft:sandstone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90119,7 +95341,7 @@ } }, "minecraft:sandstone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90129,7 +95351,7 @@ } }, "minecraft:sandstone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90139,7 +95361,7 @@ } }, "minecraft:cut_sandstone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90149,7 +95371,7 @@ } }, "minecraft:cut_sandstone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90159,7 +95381,7 @@ } }, "minecraft:cut_sandstone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90169,7 +95391,7 @@ } }, "minecraft:cut_sandstone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90179,7 +95401,7 @@ } }, "minecraft:cut_sandstone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90189,7 +95411,7 @@ } }, "minecraft:cut_sandstone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90199,7 +95421,7 @@ } }, "minecraft:petrified_oak_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90209,7 +95431,7 @@ } }, "minecraft:petrified_oak_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90219,7 +95441,7 @@ } }, "minecraft:petrified_oak_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90229,7 +95451,7 @@ } }, "minecraft:petrified_oak_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90239,7 +95461,7 @@ } }, "minecraft:petrified_oak_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90249,7 +95471,7 @@ } }, "minecraft:petrified_oak_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90259,7 +95481,7 @@ } }, "minecraft:cobblestone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90269,7 +95491,7 @@ } }, "minecraft:cobblestone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90279,7 +95501,7 @@ } }, "minecraft:cobblestone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90289,7 +95511,7 @@ } }, "minecraft:cobblestone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90299,7 +95521,7 @@ } }, "minecraft:cobblestone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90309,7 +95531,7 @@ } }, "minecraft:cobblestone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90319,7 +95541,7 @@ } }, "minecraft:brick_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90329,7 +95551,7 @@ } }, "minecraft:brick_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90339,7 +95561,7 @@ } }, "minecraft:brick_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90349,7 +95571,7 @@ } }, "minecraft:brick_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90359,7 +95581,7 @@ } }, "minecraft:brick_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90369,7 +95591,7 @@ } }, "minecraft:brick_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90379,7 +95601,7 @@ } }, "minecraft:stone_brick_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90389,7 +95611,7 @@ } }, "minecraft:stone_brick_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90399,7 +95621,7 @@ } }, "minecraft:stone_brick_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90409,7 +95631,7 @@ } }, "minecraft:stone_brick_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90419,7 +95641,7 @@ } }, "minecraft:stone_brick_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90429,7 +95651,7 @@ } }, "minecraft:stone_brick_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90438,8 +95660,62 @@ "top_slot_bit": false } }, + "minecraft:mud_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "block_hardness": 1.5, + "collision_index": 171, + "can_break_with_hand": false, + "bedrock_states": { + "top_slot_bit": true + } + }, + "minecraft:mud_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "block_hardness": 1.5, + "collision_index": 171, + "can_break_with_hand": false, + "bedrock_states": { + "top_slot_bit": true + } + }, + "minecraft:mud_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "block_hardness": 1.5, + "collision_index": 61, + "can_break_with_hand": false, + "bedrock_states": { + "top_slot_bit": false + } + }, + "minecraft:mud_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "block_hardness": 1.5, + "collision_index": 61, + "can_break_with_hand": false, + "bedrock_states": { + "top_slot_bit": false + } + }, + "minecraft:mud_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_double_slab", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "top_slot_bit": false + } + }, + "minecraft:mud_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_double_slab", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "top_slot_bit": false + } + }, "minecraft:nether_brick_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90449,7 +95725,7 @@ } }, "minecraft:nether_brick_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90459,7 +95735,7 @@ } }, "minecraft:nether_brick_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90469,7 +95745,7 @@ } }, "minecraft:nether_brick_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90479,7 +95755,7 @@ } }, "minecraft:nether_brick_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90489,7 +95765,7 @@ } }, "minecraft:nether_brick_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90499,7 +95775,7 @@ } }, "minecraft:quartz_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90509,7 +95785,7 @@ } }, "minecraft:quartz_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90519,7 +95795,7 @@ } }, "minecraft:quartz_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90529,7 +95805,7 @@ } }, "minecraft:quartz_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab", + "bedrock_identifier": "minecraft:stone_block_slab", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90539,7 +95815,7 @@ } }, "minecraft:quartz_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90549,7 +95825,7 @@ } }, "minecraft:quartz_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab", + "bedrock_identifier": "minecraft:double_stone_block_slab", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90559,7 +95835,7 @@ } }, "minecraft:red_sandstone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90569,7 +95845,7 @@ } }, "minecraft:red_sandstone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90579,7 +95855,7 @@ } }, "minecraft:red_sandstone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90589,7 +95865,7 @@ } }, "minecraft:red_sandstone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90599,7 +95875,7 @@ } }, "minecraft:red_sandstone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90609,7 +95885,7 @@ } }, "minecraft:red_sandstone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90619,7 +95895,7 @@ } }, "minecraft:cut_red_sandstone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90629,7 +95905,7 @@ } }, "minecraft:cut_red_sandstone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90639,7 +95915,7 @@ } }, "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90649,7 +95925,7 @@ } }, "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90659,7 +95935,7 @@ } }, "minecraft:cut_red_sandstone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90669,7 +95945,7 @@ } }, "minecraft:cut_red_sandstone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90679,7 +95955,7 @@ } }, "minecraft:purpur_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90689,7 +95965,7 @@ } }, "minecraft:purpur_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -90699,7 +95975,7 @@ } }, "minecraft:purpur_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90709,7 +95985,7 @@ } }, "minecraft:purpur_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -90719,7 +95995,7 @@ } }, "minecraft:purpur_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -90729,7 +96005,7 @@ } }, "minecraft:purpur_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -92532,6 +97808,358 @@ "direction": 3 } }, + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": false, + "open_bit": false + } + }, "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { "bedrock_identifier": "minecraft:fence", "block_hardness": 2.0, @@ -93972,6 +99600,198 @@ "wood_type": "dark_oak" } }, + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 65, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 66, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 65, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 66, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { "bedrock_identifier": "minecraft:spruce_door", "block_hardness": 3.0, @@ -98132,6 +103952,838 @@ "direction": 0 } }, + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:mangrove_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, "minecraft:end_rod[facing=north]": { "bedrock_identifier": "minecraft:end_rod", "block_hardness": 0.0, @@ -102072,7 +108724,7 @@ } }, "minecraft:white_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102081,7 +108733,7 @@ } }, "minecraft:orange_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102090,7 +108742,7 @@ } }, "minecraft:magenta_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102099,7 +108751,7 @@ } }, "minecraft:light_blue_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102108,7 +108760,7 @@ } }, "minecraft:yellow_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102117,7 +108769,7 @@ } }, "minecraft:lime_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102126,7 +108778,7 @@ } }, "minecraft:pink_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102135,7 +108787,7 @@ } }, "minecraft:gray_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102144,7 +108796,7 @@ } }, "minecraft:light_gray_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102153,7 +108805,7 @@ } }, "minecraft:cyan_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102162,7 +108814,7 @@ } }, "minecraft:purple_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102171,7 +108823,7 @@ } }, "minecraft:blue_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102180,7 +108832,7 @@ } }, "minecraft:brown_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102189,7 +108841,7 @@ } }, "minecraft:green_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102198,7 +108850,7 @@ } }, "minecraft:red_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -102207,7 +108859,7 @@ } }, "minecraft:black_concrete_powder": { - "bedrock_identifier": "minecraft:concretePowder", + "bedrock_identifier": "minecraft:concrete_powder", "block_hardness": 0.5, "collision_index": 1, "can_break_with_hand": true, @@ -115668,7 +122320,7 @@ } }, "minecraft:polished_granite_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -115678,7 +122330,7 @@ } }, "minecraft:polished_granite_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -115688,7 +122340,7 @@ } }, "minecraft:polished_granite_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -115698,7 +122350,7 @@ } }, "minecraft:polished_granite_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -115708,7 +122360,7 @@ } }, "minecraft:polished_granite_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -115718,7 +122370,7 @@ } }, "minecraft:polished_granite_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -115728,7 +122380,7 @@ } }, "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -115738,7 +122390,7 @@ } }, "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -115748,7 +122400,7 @@ } }, "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -115758,7 +122410,7 @@ } }, "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -115768,7 +122420,7 @@ } }, "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -115778,7 +122430,7 @@ } }, "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -115788,7 +122440,7 @@ } }, "minecraft:mossy_stone_brick_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -115798,7 +122450,7 @@ } }, "minecraft:mossy_stone_brick_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -115808,7 +122460,7 @@ } }, "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -115818,7 +122470,7 @@ } }, "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -115828,7 +122480,7 @@ } }, "minecraft:mossy_stone_brick_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -115838,7 +122490,7 @@ } }, "minecraft:mossy_stone_brick_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -115848,7 +122500,7 @@ } }, "minecraft:polished_diorite_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -115858,7 +122510,7 @@ } }, "minecraft:polished_diorite_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -115868,7 +122520,7 @@ } }, "minecraft:polished_diorite_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -115878,7 +122530,7 @@ } }, "minecraft:polished_diorite_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -115888,7 +122540,7 @@ } }, "minecraft:polished_diorite_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -115898,7 +122550,7 @@ } }, "minecraft:polished_diorite_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -115908,7 +122560,7 @@ } }, "minecraft:mossy_cobblestone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -115918,7 +122570,7 @@ } }, "minecraft:mossy_cobblestone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -115928,7 +122580,7 @@ } }, "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -115938,7 +122590,7 @@ } }, "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -115948,7 +122600,7 @@ } }, "minecraft:mossy_cobblestone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -115958,7 +122610,7 @@ } }, "minecraft:mossy_cobblestone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -115968,7 +122620,7 @@ } }, "minecraft:end_stone_brick_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 3.0, "collision_index": 171, "can_break_with_hand": false, @@ -115978,7 +122630,7 @@ } }, "minecraft:end_stone_brick_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 3.0, "collision_index": 171, "can_break_with_hand": false, @@ -115988,7 +122640,7 @@ } }, "minecraft:end_stone_brick_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 3.0, "collision_index": 61, "can_break_with_hand": false, @@ -115998,7 +122650,7 @@ } }, "minecraft:end_stone_brick_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 3.0, "collision_index": 61, "can_break_with_hand": false, @@ -116008,7 +122660,7 @@ } }, "minecraft:end_stone_brick_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 3.0, "collision_index": 1, "can_break_with_hand": false, @@ -116018,7 +122670,7 @@ } }, "minecraft:end_stone_brick_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 3.0, "collision_index": 1, "can_break_with_hand": false, @@ -116028,7 +122680,7 @@ } }, "minecraft:smooth_sandstone_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -116038,7 +122690,7 @@ } }, "minecraft:smooth_sandstone_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -116048,7 +122700,7 @@ } }, "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -116058,7 +122710,7 @@ } }, "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -116068,7 +122720,7 @@ } }, "minecraft:smooth_sandstone_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -116078,7 +122730,7 @@ } }, "minecraft:smooth_sandstone_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -116088,7 +122740,7 @@ } }, "minecraft:smooth_quartz_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -116098,7 +122750,7 @@ } }, "minecraft:smooth_quartz_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -116108,7 +122760,7 @@ } }, "minecraft:smooth_quartz_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -116118,7 +122770,7 @@ } }, "minecraft:smooth_quartz_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab4", + "bedrock_identifier": "minecraft:stone_block_slab4", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -116128,7 +122780,7 @@ } }, "minecraft:smooth_quartz_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -116138,7 +122790,7 @@ } }, "minecraft:smooth_quartz_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab4", + "bedrock_identifier": "minecraft:double_stone_block_slab4", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -116148,7 +122800,7 @@ } }, "minecraft:granite_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -116158,7 +122810,7 @@ } }, "minecraft:granite_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -116168,7 +122820,7 @@ } }, "minecraft:granite_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -116178,7 +122830,7 @@ } }, "minecraft:granite_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -116188,7 +122840,7 @@ } }, "minecraft:granite_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -116198,7 +122850,7 @@ } }, "minecraft:granite_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -116208,7 +122860,7 @@ } }, "minecraft:andesite_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -116218,7 +122870,7 @@ } }, "minecraft:andesite_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -116228,7 +122880,7 @@ } }, "minecraft:andesite_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -116238,7 +122890,7 @@ } }, "minecraft:andesite_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -116248,7 +122900,7 @@ } }, "minecraft:andesite_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -116258,7 +122910,7 @@ } }, "minecraft:andesite_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -116268,7 +122920,7 @@ } }, "minecraft:red_nether_brick_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -116278,7 +122930,7 @@ } }, "minecraft:red_nether_brick_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 171, "can_break_with_hand": false, @@ -116288,7 +122940,7 @@ } }, "minecraft:red_nether_brick_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -116298,7 +122950,7 @@ } }, "minecraft:red_nether_brick_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab2", + "bedrock_identifier": "minecraft:stone_block_slab2", "block_hardness": 2.0, "collision_index": 61, "can_break_with_hand": false, @@ -116308,7 +122960,7 @@ } }, "minecraft:red_nether_brick_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -116318,7 +122970,7 @@ } }, "minecraft:red_nether_brick_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab2", + "bedrock_identifier": "minecraft:double_stone_block_slab2", "block_hardness": 2.0, "collision_index": 1, "can_break_with_hand": false, @@ -116328,7 +122980,7 @@ } }, "minecraft:polished_andesite_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -116338,7 +122990,7 @@ } }, "minecraft:polished_andesite_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -116348,7 +123000,7 @@ } }, "minecraft:polished_andesite_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -116358,7 +123010,7 @@ } }, "minecraft:polished_andesite_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -116368,7 +123020,7 @@ } }, "minecraft:polished_andesite_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -116378,7 +123030,7 @@ } }, "minecraft:polished_andesite_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -116388,7 +123040,7 @@ } }, "minecraft:diorite_slab[type=top,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -116398,7 +123050,7 @@ } }, "minecraft:diorite_slab[type=top,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 171, "can_break_with_hand": false, @@ -116408,7 +123060,7 @@ } }, "minecraft:diorite_slab[type=bottom,waterlogged=true]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -116418,7 +123070,7 @@ } }, "minecraft:diorite_slab[type=bottom,waterlogged=false]": { - "bedrock_identifier": "minecraft:stone_slab3", + "bedrock_identifier": "minecraft:stone_block_slab3", "block_hardness": 1.5, "collision_index": 61, "can_break_with_hand": false, @@ -116428,7 +123080,7 @@ } }, "minecraft:diorite_slab[type=double,waterlogged=true]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -116438,7 +123090,7 @@ } }, "minecraft:diorite_slab[type=double,waterlogged=false]": { - "bedrock_identifier": "minecraft:double_stone_slab3", + "bedrock_identifier": "minecraft:double_stone_block_slab3", "block_hardness": 1.5, "collision_index": 1, "can_break_with_hand": false, @@ -143663,4545 +150315,4221 @@ "wall_block_type": "stone_brick" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "none", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "short", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "none", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "short", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "none" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "short" } }, - "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_connection_type_north": "tall", "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "nether_brick" + "wall_connection_type_west": "tall" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -148210,12 +154538,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -148224,12 +154552,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -148238,12 +154566,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -148252,12 +154580,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -148266,12 +154594,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -148280,12 +154608,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -148294,12 +154622,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -148308,12 +154636,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -148322,12 +154650,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -148336,12 +154664,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -148350,12 +154678,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -148364,12 +154692,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -148378,12 +154706,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -148392,12 +154720,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -148406,12 +154734,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -148420,12 +154748,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -148434,12 +154762,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -148448,12 +154776,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -148462,12 +154790,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -148476,12 +154804,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -148490,12 +154818,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -148504,12 +154832,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -148518,12 +154846,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -148532,12 +154860,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -148546,12 +154874,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -148560,12 +154888,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -148574,12 +154902,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -148588,12 +154916,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -148602,12 +154930,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -148616,12 +154944,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -148630,12 +154958,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -148644,12 +154972,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -148658,12 +154986,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -148672,12 +155000,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -148686,12 +155014,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -148700,12 +155028,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -148714,12 +155042,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -148728,12 +155056,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -148742,12 +155070,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -148756,12 +155084,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -148770,12 +155098,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -148784,12 +155112,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -148798,12 +155126,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -148812,12 +155140,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -148826,12 +155154,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -148840,12 +155168,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -148854,12 +155182,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -148868,12 +155196,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -148882,12 +155210,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -148896,12 +155224,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -148910,12 +155238,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -148924,12 +155252,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -148938,12 +155266,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -148952,12 +155280,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -148966,12 +155294,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -148980,12 +155308,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -148994,12 +155322,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -149008,12 +155336,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149022,12 +155350,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149036,12 +155364,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -149050,12 +155378,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149064,12 +155392,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149078,12 +155406,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -149092,12 +155420,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149106,12 +155434,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149120,12 +155448,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -149134,12 +155462,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149148,12 +155476,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149162,12 +155490,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -149176,12 +155504,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149190,12 +155518,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149204,12 +155532,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -149218,12 +155546,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -149232,12 +155560,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -149246,12 +155574,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -149260,12 +155588,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -149274,12 +155602,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -149288,12 +155616,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -149302,12 +155630,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -149316,12 +155644,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -149330,12 +155658,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -149344,12 +155672,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -149358,12 +155686,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -149372,12 +155700,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -149386,12 +155714,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149400,12 +155728,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149414,12 +155742,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -149428,12 +155756,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149442,12 +155770,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149456,12 +155784,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -149470,12 +155798,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149484,12 +155812,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149498,12 +155826,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -149512,12 +155840,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149526,12 +155854,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149540,12 +155868,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -149554,12 +155882,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149568,12 +155896,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149582,12 +155910,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -149596,12 +155924,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149610,12 +155938,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -149624,12 +155952,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -149638,12 +155966,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149652,12 +155980,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149666,12 +155994,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -149680,12 +156008,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149694,12 +156022,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -149708,12 +156036,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -149722,12 +156050,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -149736,12 +156064,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -149750,12 +156078,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -149764,12 +156092,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -149778,12 +156106,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -149792,12 +156120,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -149806,12 +156134,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -149820,12 +156148,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -149834,12 +156162,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -149848,12 +156176,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -149862,12 +156190,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -149876,12 +156204,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -149890,12 +156218,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -149904,12 +156232,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -149918,12 +156246,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -149932,12 +156260,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -149946,12 +156274,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -149960,12 +156288,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -149974,12 +156302,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -149988,12 +156316,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -150002,12 +156330,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -150016,12 +156344,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -150030,12 +156358,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -150044,12 +156372,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -150058,12 +156386,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -150072,12 +156400,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -150086,12 +156414,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -150100,12 +156428,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -150114,12 +156442,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -150128,12 +156456,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -150142,12 +156470,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -150156,12 +156484,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -150170,12 +156498,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -150184,12 +156512,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -150198,12 +156526,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -150212,12 +156540,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -150226,12 +156554,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -150240,12 +156568,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -150254,12 +156582,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -150268,12 +156596,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -150282,12 +156610,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -150296,12 +156624,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -150310,12 +156638,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -150324,12 +156652,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -150338,12 +156666,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -150352,12 +156680,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -150366,12 +156694,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -150380,12 +156708,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -150394,12 +156722,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150408,12 +156736,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150422,12 +156750,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -150436,12 +156764,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150450,12 +156778,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150464,12 +156792,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -150478,12 +156806,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150492,12 +156820,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150506,12 +156834,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -150520,12 +156848,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150534,12 +156862,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150548,12 +156876,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -150562,12 +156890,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150576,12 +156904,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150590,12 +156918,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -150604,12 +156932,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150618,12 +156946,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150632,12 +156960,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -150646,12 +156974,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150660,12 +156988,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150674,12 +157002,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -150688,12 +157016,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150702,12 +157030,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150716,12 +157044,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -150730,12 +157058,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -150744,12 +157072,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -150758,12 +157086,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -150772,12 +157100,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -150786,12 +157114,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -150800,12 +157128,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -150814,12 +157142,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -150828,12 +157156,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -150842,12 +157170,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -150856,12 +157184,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -150870,12 +157198,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -150884,12 +157212,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -150898,12 +157226,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150912,12 +157240,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150926,12 +157254,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -150940,12 +157268,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150954,12 +157282,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -150968,12 +157296,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -150982,12 +157310,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -150996,12 +157324,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -151010,12 +157338,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -151024,12 +157352,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -151038,12 +157366,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -151052,12 +157380,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -151066,12 +157394,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -151080,12 +157408,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -151094,12 +157422,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -151108,12 +157436,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -151122,12 +157450,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -151136,12 +157464,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -151150,12 +157478,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -151164,12 +157492,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -151178,12 +157506,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -151192,12 +157520,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -151206,12 +157534,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -151220,12 +157548,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -151234,12 +157562,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -151248,12 +157576,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -151262,12 +157590,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -151276,12 +157604,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -151290,12 +157618,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -151304,12 +157632,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -151318,12 +157646,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -151332,12 +157660,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -151346,12 +157674,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -151360,12 +157688,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -151374,12 +157702,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -151388,12 +157716,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -151402,12 +157730,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -151416,12 +157744,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -151430,12 +157758,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -151444,12 +157772,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -151458,12 +157786,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -151472,12 +157800,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -151486,12 +157814,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -151500,12 +157828,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -151514,12 +157842,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -151528,12 +157856,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -151542,12 +157870,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -151556,12 +157884,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -151570,12 +157898,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -151584,12 +157912,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -151598,12 +157926,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -151612,12 +157940,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -151626,12 +157954,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -151640,12 +157968,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -151654,12 +157982,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -151668,12 +157996,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -151682,12 +158010,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -151696,12 +158024,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -151710,12 +158038,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -151724,12 +158052,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -151738,12 +158066,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -151752,12 +158080,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -151766,12 +158094,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -151780,12 +158108,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -151794,12 +158122,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -151808,12 +158136,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -151822,12 +158150,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -151836,12 +158164,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -151850,12 +158178,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -151864,12 +158192,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -151878,12 +158206,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -151892,12 +158220,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -151906,12 +158234,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -151920,12 +158248,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -151934,12 +158262,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -151948,12 +158276,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -151962,12 +158290,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -151976,12 +158304,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -151990,12 +158318,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152004,12 +158332,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152018,12 +158346,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -152032,12 +158360,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152046,12 +158374,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152060,12 +158388,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -152074,12 +158402,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152088,12 +158416,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152102,12 +158430,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -152116,12 +158444,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152130,12 +158458,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152144,12 +158472,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -152158,12 +158486,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152172,12 +158500,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152186,12 +158514,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -152200,12 +158528,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152214,12 +158542,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152228,12 +158556,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -152242,12 +158570,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -152256,12 +158584,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -152270,12 +158598,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -152284,12 +158612,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -152298,12 +158626,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -152312,12 +158640,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -152326,12 +158654,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -152340,12 +158668,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -152354,12 +158682,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -152368,12 +158696,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -152382,12 +158710,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -152396,12 +158724,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -152410,12 +158738,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152424,12 +158752,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152438,12 +158766,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -152452,12 +158780,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152466,12 +158794,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152480,12 +158808,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -152494,12 +158822,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152508,12 +158836,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152522,12 +158850,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -152536,12 +158864,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152550,12 +158878,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152564,12 +158892,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -152578,12 +158906,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152592,12 +158920,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152606,12 +158934,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -152620,12 +158948,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152634,12 +158962,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -152648,12 +158976,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -152662,12 +158990,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152676,12 +159004,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152690,12 +159018,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -152704,12 +159032,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152718,12 +159046,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -152732,12 +159060,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "andesite" + "wall_block_type": "nether_brick" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -152746,12 +159074,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -152760,12 +159088,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -152774,12 +159102,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -152788,12 +159116,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -152802,12 +159130,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -152816,12 +159144,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -152830,12 +159158,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -152844,12 +159172,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -152858,12 +159186,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -152872,12 +159200,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -152886,12 +159214,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -152900,12 +159228,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -152914,12 +159242,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -152928,12 +159256,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -152942,12 +159270,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -152956,12 +159284,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -152970,12 +159298,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -152984,12 +159312,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -152998,12 +159326,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -153012,12 +159340,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -153026,12 +159354,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -153040,12 +159368,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -153054,12 +159382,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -153068,12 +159396,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -153082,12 +159410,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -153096,12 +159424,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -153110,12 +159438,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -153124,12 +159452,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -153138,12 +159466,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -153152,12 +159480,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -153166,12 +159494,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -153180,12 +159508,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -153194,12 +159522,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -153208,12 +159536,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -153222,12 +159550,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -153236,12 +159564,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -153250,12 +159578,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -153264,12 +159592,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -153278,12 +159606,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -153292,12 +159620,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -153306,12 +159634,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -153320,12 +159648,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -153334,12 +159662,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -153348,12 +159676,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -153362,12 +159690,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -153376,12 +159704,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -153390,12 +159718,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -153404,12 +159732,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -153418,12 +159746,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153432,12 +159760,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153446,12 +159774,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -153460,12 +159788,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153474,12 +159802,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153488,12 +159816,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -153502,12 +159830,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -153516,12 +159844,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -153530,12 +159858,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -153544,12 +159872,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -153558,12 +159886,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -153572,12 +159900,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -153586,12 +159914,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153600,12 +159928,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153614,12 +159942,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -153628,12 +159956,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153642,12 +159970,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153656,12 +159984,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -153670,12 +159998,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -153684,12 +160012,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -153698,12 +160026,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -153712,12 +160040,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -153726,12 +160054,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -153740,12 +160068,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -153754,12 +160082,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -153768,12 +160096,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -153782,12 +160110,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -153796,12 +160124,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -153810,12 +160138,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -153824,12 +160152,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -153838,12 +160166,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -153852,12 +160180,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -153866,12 +160194,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -153880,12 +160208,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -153894,12 +160222,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -153908,12 +160236,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -153922,12 +160250,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153936,12 +160264,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153950,12 +160278,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -153964,12 +160292,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153978,12 +160306,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -153992,12 +160320,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -154006,12 +160334,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -154020,12 +160348,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -154034,12 +160362,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -154048,12 +160376,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -154062,12 +160390,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -154076,12 +160404,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -154090,12 +160418,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -154104,12 +160432,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -154118,12 +160446,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -154132,12 +160460,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -154146,12 +160474,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -154160,12 +160488,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -154174,12 +160502,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -154188,12 +160516,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -154202,12 +160530,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -154216,12 +160544,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -154230,12 +160558,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -154244,12 +160572,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -154258,12 +160586,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -154272,12 +160600,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -154286,12 +160614,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -154300,12 +160628,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -154314,12 +160642,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -154328,12 +160656,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -154342,12 +160670,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -154356,12 +160684,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -154370,12 +160698,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -154384,12 +160712,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -154398,12 +160726,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -154412,12 +160740,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -154426,12 +160754,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -154440,12 +160768,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -154454,12 +160782,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -154468,12 +160796,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -154482,12 +160810,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -154496,12 +160824,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -154510,12 +160838,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -154524,12 +160852,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -154538,12 +160866,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -154552,12 +160880,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -154566,12 +160894,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -154580,12 +160908,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -154594,12 +160922,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -154608,12 +160936,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -154622,12 +160950,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -154636,12 +160964,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -154650,12 +160978,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -154664,12 +160992,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -154678,12 +161006,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -154692,12 +161020,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -154706,12 +161034,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -154720,12 +161048,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -154734,12 +161062,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -154748,12 +161076,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -154762,12 +161090,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -154776,12 +161104,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -154790,12 +161118,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -154804,12 +161132,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -154818,12 +161146,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -154832,12 +161160,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -154846,12 +161174,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -154860,12 +161188,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -154874,12 +161202,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -154888,12 +161216,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -154902,12 +161230,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -154916,12 +161244,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -154930,12 +161258,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -154944,12 +161272,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -154958,12 +161286,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -154972,12 +161300,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -154986,12 +161314,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155000,12 +161328,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -155014,12 +161342,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155028,12 +161356,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155042,12 +161370,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -155056,12 +161384,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155070,12 +161398,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155084,12 +161412,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -155098,12 +161426,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155112,12 +161440,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155126,12 +161454,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -155140,12 +161468,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155154,12 +161482,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155168,12 +161496,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -155182,12 +161510,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155196,12 +161524,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155210,12 +161538,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -155224,12 +161552,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155238,12 +161566,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155252,12 +161580,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -155266,12 +161594,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -155280,12 +161608,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -155294,12 +161622,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -155308,12 +161636,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -155322,12 +161650,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -155336,12 +161664,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -155350,12 +161678,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -155364,12 +161692,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -155378,12 +161706,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -155392,12 +161720,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -155406,12 +161734,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -155420,12 +161748,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -155434,12 +161762,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155448,12 +161776,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155462,12 +161790,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -155476,12 +161804,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155490,12 +161818,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155504,12 +161832,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -155518,12 +161846,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155532,12 +161860,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155546,12 +161874,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -155560,12 +161888,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155574,12 +161902,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155588,12 +161916,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -155602,12 +161930,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155616,12 +161944,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155630,12 +161958,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -155644,12 +161972,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155658,12 +161986,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -155672,12 +162000,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -155686,12 +162014,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155700,12 +162028,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155714,12 +162042,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -155728,12 +162056,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155742,12 +162070,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -155756,12 +162084,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -155770,12 +162098,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -155784,12 +162112,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -155798,12 +162126,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -155812,12 +162140,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -155826,12 +162154,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -155840,12 +162168,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -155854,12 +162182,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -155868,12 +162196,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -155882,12 +162210,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -155896,12 +162224,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -155910,12 +162238,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -155924,12 +162252,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -155938,12 +162266,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -155952,12 +162280,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -155966,12 +162294,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -155980,12 +162308,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -155994,12 +162322,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -156008,12 +162336,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -156022,12 +162350,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -156036,12 +162364,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -156050,12 +162378,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -156064,12 +162392,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -156078,12 +162406,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -156092,12 +162420,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -156106,12 +162434,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -156120,12 +162448,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -156134,12 +162462,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -156148,12 +162476,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -156162,12 +162490,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -156176,12 +162504,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -156190,12 +162518,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -156204,12 +162532,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -156218,12 +162546,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -156232,12 +162560,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -156246,12 +162574,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -156260,12 +162588,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -156274,12 +162602,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -156288,12 +162616,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -156302,12 +162630,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -156316,12 +162644,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -156330,12 +162658,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -156344,12 +162672,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -156358,12 +162686,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -156372,12 +162700,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -156386,12 +162714,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -156400,12 +162728,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -156414,12 +162742,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -156428,12 +162756,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -156442,12 +162770,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156456,12 +162784,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156470,12 +162798,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -156484,12 +162812,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156498,12 +162826,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156512,12 +162840,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -156526,12 +162854,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -156540,12 +162868,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -156554,12 +162882,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -156568,12 +162896,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -156582,12 +162910,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -156596,12 +162924,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -156610,12 +162938,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156624,12 +162952,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156638,12 +162966,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -156652,12 +162980,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156666,12 +162994,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156680,12 +163008,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -156694,12 +163022,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -156708,12 +163036,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -156722,12 +163050,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -156736,12 +163064,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -156750,12 +163078,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -156764,12 +163092,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -156778,12 +163106,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -156792,12 +163120,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -156806,12 +163134,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -156820,12 +163148,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -156834,12 +163162,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -156848,12 +163176,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -156862,12 +163190,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -156876,12 +163204,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -156890,12 +163218,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -156904,12 +163232,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -156918,12 +163246,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -156932,12 +163260,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -156946,12 +163274,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156960,12 +163288,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -156974,12 +163302,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -156988,12 +163316,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -157002,12 +163330,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -157016,12 +163344,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -157030,12 +163358,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -157044,12 +163372,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -157058,12 +163386,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -157072,12 +163400,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -157086,12 +163414,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -157100,12 +163428,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -157114,12 +163442,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -157128,12 +163456,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -157142,12 +163470,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -157156,12 +163484,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -157170,12 +163498,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -157184,12 +163512,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -157198,12 +163526,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -157212,12 +163540,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -157226,12 +163554,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -157240,12 +163568,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -157254,12 +163582,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 2.0, + "block_hardness": 1.5, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -157268,12 +163596,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "red_nether_brick" + "wall_block_type": "andesite" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -157282,12 +163610,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -157296,12 +163624,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -157310,12 +163638,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -157324,12 +163652,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -157338,12 +163666,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -157352,12 +163680,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -157366,12 +163694,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -157380,12 +163708,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -157394,12 +163722,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -157408,12 +163736,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -157422,12 +163750,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -157436,12 +163764,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -157450,12 +163778,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -157464,12 +163792,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -157478,12 +163806,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -157492,12 +163820,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -157506,12 +163834,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -157520,12 +163848,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -157534,12 +163862,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -157548,12 +163876,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -157562,12 +163890,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -157576,12 +163904,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -157590,12 +163918,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -157604,12 +163932,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -157618,12 +163946,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -157632,12 +163960,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -157646,12 +163974,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -157660,12 +163988,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -157674,12 +164002,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -157688,12 +164016,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -157702,12 +164030,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -157716,12 +164044,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -157730,12 +164058,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -157744,12 +164072,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -157758,12 +164086,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -157772,12 +164100,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -157786,12 +164114,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -157800,12 +164128,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -157814,12 +164142,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -157828,12 +164156,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -157842,12 +164170,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -157856,12 +164184,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -157870,12 +164198,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -157884,12 +164212,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -157898,12 +164226,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -157912,12 +164240,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -157926,12 +164254,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -157940,12 +164268,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -157954,12 +164282,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -157968,12 +164296,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -157982,12 +164310,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -157996,12 +164324,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158010,12 +164338,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158024,12 +164352,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -158038,12 +164366,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158052,12 +164380,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158066,12 +164394,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -158080,12 +164408,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158094,12 +164422,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158108,12 +164436,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -158122,12 +164450,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158136,12 +164464,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158150,12 +164478,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -158164,12 +164492,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158178,12 +164506,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158192,12 +164520,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -158206,12 +164534,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158220,12 +164548,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158234,12 +164562,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -158248,12 +164576,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158262,12 +164590,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158276,12 +164604,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -158290,12 +164618,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -158304,12 +164632,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -158318,12 +164646,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -158332,12 +164660,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -158346,12 +164674,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -158360,12 +164688,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -158374,12 +164702,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -158388,12 +164716,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -158402,12 +164730,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -158416,12 +164744,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -158430,12 +164758,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -158444,12 +164772,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -158458,12 +164786,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158472,12 +164800,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158486,12 +164814,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -158500,12 +164828,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158514,12 +164842,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158528,12 +164856,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -158542,12 +164870,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158556,12 +164884,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158570,12 +164898,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -158584,12 +164912,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158598,12 +164926,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158612,12 +164940,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -158626,12 +164954,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158640,12 +164968,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158654,12 +164982,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -158668,12 +164996,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158682,12 +165010,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -158696,12 +165024,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -158710,12 +165038,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158724,12 +165052,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158738,12 +165066,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -158752,12 +165080,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158766,12 +165094,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -158780,12 +165108,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -158794,12 +165122,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -158808,12 +165136,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -158822,12 +165150,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -158836,12 +165164,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -158850,12 +165178,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -158864,12 +165192,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -158878,12 +165206,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -158892,12 +165220,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -158906,12 +165234,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -158920,12 +165248,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -158934,12 +165262,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -158948,12 +165276,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -158962,12 +165290,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -158976,12 +165304,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -158990,12 +165318,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -159004,12 +165332,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -159018,12 +165346,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -159032,12 +165360,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -159046,12 +165374,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -159060,12 +165388,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -159074,12 +165402,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -159088,12 +165416,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -159102,12 +165430,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -159116,12 +165444,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -159130,12 +165458,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -159144,12 +165472,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -159158,12 +165486,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -159172,12 +165500,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -159186,12 +165514,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -159200,12 +165528,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -159214,12 +165542,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -159228,12 +165556,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -159242,12 +165570,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -159256,12 +165584,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -159270,12 +165598,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -159284,12 +165612,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -159298,12 +165626,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -159312,12 +165640,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -159326,12 +165654,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -159340,12 +165668,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -159354,12 +165682,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -159368,12 +165696,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -159382,12 +165710,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -159396,12 +165724,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -159410,12 +165738,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -159424,12 +165752,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -159438,12 +165766,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -159452,12 +165780,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -159466,12 +165794,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159480,12 +165808,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159494,12 +165822,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -159508,12 +165836,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159522,12 +165850,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159536,12 +165864,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -159550,12 +165878,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -159564,12 +165892,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -159578,12 +165906,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -159592,12 +165920,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -159606,12 +165934,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -159620,12 +165948,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -159634,12 +165962,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159648,12 +165976,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159662,12 +165990,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -159676,12 +166004,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159690,12 +166018,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159704,12 +166032,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -159718,12 +166046,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -159732,12 +166060,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -159746,12 +166074,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -159760,12 +166088,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -159774,12 +166102,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -159788,12 +166116,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -159802,12 +166130,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -159816,12 +166144,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -159830,12 +166158,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -159844,12 +166172,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -159858,12 +166186,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -159872,12 +166200,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -159886,12 +166214,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -159900,12 +166228,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -159914,12 +166242,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -159928,12 +166256,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -159942,12 +166270,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -159956,12 +166284,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -159970,12 +166298,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159984,12 +166312,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -159998,12 +166326,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -160012,12 +166340,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -160026,12 +166354,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -160040,12 +166368,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -160054,12 +166382,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -160068,12 +166396,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -160082,12 +166410,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -160096,12 +166424,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -160110,12 +166438,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -160124,12 +166452,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -160138,12 +166466,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -160152,12 +166480,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -160166,12 +166494,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -160180,12 +166508,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -160194,12 +166522,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -160208,12 +166536,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -160222,12 +166550,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -160236,12 +166564,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -160250,12 +166578,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -160264,12 +166592,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -160278,12 +166606,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -160292,12 +166620,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -160306,12 +166634,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -160320,12 +166648,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -160334,12 +166662,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -160348,12 +166676,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -160362,12 +166690,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -160376,12 +166704,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -160390,12 +166718,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -160404,12 +166732,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -160418,12 +166746,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -160432,12 +166760,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -160446,12 +166774,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -160460,12 +166788,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -160474,12 +166802,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -160488,12 +166816,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -160502,12 +166830,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -160516,12 +166844,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -160530,12 +166858,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -160544,12 +166872,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -160558,12 +166886,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -160572,12 +166900,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -160586,12 +166914,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -160600,12 +166928,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -160614,12 +166942,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -160628,12 +166956,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -160642,12 +166970,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -160656,12 +166984,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -160670,12 +166998,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -160684,12 +167012,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -160698,12 +167026,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -160712,12 +167040,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -160726,12 +167054,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -160740,12 +167068,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -160754,12 +167082,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -160768,12 +167096,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -160782,12 +167110,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -160796,12 +167124,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -160810,12 +167138,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -160824,12 +167152,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -160838,12 +167166,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -160852,12 +167180,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -160866,12 +167194,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -160880,12 +167208,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -160894,12 +167222,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -160908,12 +167236,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -160922,12 +167250,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -160936,12 +167264,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -160950,12 +167278,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -160964,12 +167292,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -160978,12 +167306,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -160992,12 +167320,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161006,12 +167334,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -161020,12 +167348,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161034,12 +167362,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161048,12 +167376,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -161062,12 +167390,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161076,12 +167404,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161090,12 +167418,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -161104,12 +167432,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161118,12 +167446,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161132,12 +167460,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -161146,12 +167474,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161160,12 +167488,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161174,12 +167502,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -161188,12 +167516,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161202,12 +167530,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161216,12 +167544,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -161230,12 +167558,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161244,12 +167572,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161258,12 +167586,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -161272,12 +167600,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161286,12 +167614,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161300,12 +167628,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -161314,12 +167642,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -161328,12 +167656,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -161342,12 +167670,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -161356,12 +167684,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -161370,12 +167698,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -161384,12 +167712,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -161398,12 +167726,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -161412,12 +167740,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -161426,12 +167754,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -161440,12 +167768,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -161454,12 +167782,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -161468,12 +167796,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -161482,12 +167810,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161496,12 +167824,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161510,12 +167838,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -161524,12 +167852,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161538,12 +167866,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161552,12 +167880,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -161566,12 +167894,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161580,12 +167908,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161594,12 +167922,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -161608,12 +167936,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161622,12 +167950,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161636,12 +167964,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -161650,12 +167978,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161664,12 +167992,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161678,12 +168006,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -161692,12 +168020,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161706,12 +168034,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -161720,12 +168048,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -161734,12 +168062,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161748,12 +168076,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161762,12 +168090,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -161776,12 +168104,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161790,12 +168118,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 0.8, + "block_hardness": 2.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -161804,12 +168132,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "sandstone" + "wall_block_type": "red_nether_brick" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -161818,12 +168146,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -161832,12 +168160,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -161846,12 +168174,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -161860,12 +168188,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -161874,12 +168202,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -161888,12 +168216,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -161902,12 +168230,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -161916,12 +168244,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -161930,12 +168258,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -161944,12 +168272,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -161958,12 +168286,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -161972,12 +168300,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -161986,12 +168314,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -162000,12 +168328,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -162014,12 +168342,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -162028,12 +168356,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -162042,12 +168370,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -162056,12 +168384,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -162070,12 +168398,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -162084,12 +168412,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -162098,12 +168426,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -162112,12 +168440,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -162126,12 +168454,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -162140,12 +168468,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -162154,12 +168482,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -162168,12 +168496,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -162182,12 +168510,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -162196,12 +168524,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -162210,12 +168538,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -162224,12 +168552,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -162238,12 +168566,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -162252,12 +168580,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -162266,12 +168594,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -162280,12 +168608,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -162294,12 +168622,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -162308,12 +168636,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -162322,12 +168650,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -162336,12 +168664,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -162350,12 +168678,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -162364,12 +168692,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -162378,12 +168706,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -162392,12 +168720,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -162406,12 +168734,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -162420,12 +168748,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -162434,12 +168762,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -162448,12 +168776,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -162462,12 +168790,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -162476,12 +168804,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -162490,12 +168818,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -162504,12 +168832,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -162518,12 +168846,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -162532,12 +168860,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -162546,12 +168874,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -162560,12 +168888,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -162574,12 +168902,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -162588,12 +168916,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -162602,12 +168930,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -162616,12 +168944,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -162630,12 +168958,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -162644,12 +168972,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -162658,12 +168986,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -162672,12 +169000,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -162686,12 +169014,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -162700,12 +169028,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -162714,12 +169042,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -162728,12 +169056,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -162742,12 +169070,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -162756,12 +169084,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -162770,12 +169098,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -162784,12 +169112,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -162798,12 +169126,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -162812,12 +169140,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -162826,12 +169154,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -162840,12 +169168,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -162854,12 +169182,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -162868,12 +169196,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -162882,12 +169210,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -162896,12 +169224,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -162910,12 +169238,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -162924,12 +169252,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -162938,12 +169266,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -162952,12 +169280,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -162966,12 +169294,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -162980,12 +169308,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -162994,12 +169322,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -163008,12 +169336,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -163022,12 +169350,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -163036,12 +169364,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -163050,12 +169378,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -163064,12 +169392,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -163078,12 +169406,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -163092,12 +169420,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -163106,12 +169434,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -163120,12 +169448,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -163134,12 +169462,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -163148,12 +169476,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -163162,12 +169490,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -163176,12 +169504,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -163190,12 +169518,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -163204,12 +169532,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -163218,12 +169546,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -163232,12 +169560,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -163246,12 +169574,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -163260,12 +169588,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -163274,12 +169602,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -163288,12 +169616,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -163302,12 +169630,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -163316,12 +169644,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -163330,12 +169658,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -163344,12 +169672,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -163358,12 +169686,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -163372,12 +169700,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -163386,12 +169714,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -163400,12 +169728,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -163414,12 +169742,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -163428,12 +169756,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -163442,12 +169770,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -163456,12 +169784,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -163470,12 +169798,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -163484,12 +169812,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -163498,12 +169826,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -163512,12 +169840,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -163526,12 +169854,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -163540,12 +169868,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -163554,12 +169882,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -163568,12 +169896,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -163582,12 +169910,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -163596,12 +169924,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -163610,12 +169938,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -163624,12 +169952,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -163638,12 +169966,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -163652,12 +169980,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -163666,12 +169994,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -163680,12 +170008,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -163694,12 +170022,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -163708,12 +170036,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -163722,12 +170050,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -163736,12 +170064,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -163750,12 +170078,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -163764,12 +170092,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -163778,12 +170106,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -163792,12 +170120,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -163806,12 +170134,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -163820,12 +170148,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -163834,12 +170162,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -163848,12 +170176,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -163862,12 +170190,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -163876,12 +170204,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -163890,12 +170218,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -163904,12 +170232,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -163918,12 +170246,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -163932,12 +170260,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -163946,12 +170274,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -163960,12 +170288,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -163974,12 +170302,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -163988,12 +170316,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -164002,12 +170330,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164016,12 +170344,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164030,12 +170358,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -164044,12 +170372,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164058,12 +170386,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164072,12 +170400,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -164086,12 +170414,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164100,12 +170428,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164114,12 +170442,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -164128,12 +170456,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164142,12 +170470,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164156,12 +170484,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -164170,12 +170498,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164184,12 +170512,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164198,12 +170526,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -164212,12 +170540,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164226,12 +170554,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164240,12 +170568,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -164254,12 +170582,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164268,12 +170596,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164282,12 +170610,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -164296,12 +170624,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164310,12 +170638,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164324,12 +170652,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -164338,12 +170666,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -164352,12 +170680,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -164366,12 +170694,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -164380,12 +170708,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -164394,12 +170722,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -164408,12 +170736,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -164422,12 +170750,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -164436,12 +170764,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -164450,12 +170778,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -164464,12 +170792,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -164478,12 +170806,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -164492,12 +170820,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -164506,12 +170834,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164520,12 +170848,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164534,12 +170862,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -164548,12 +170876,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164562,12 +170890,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164576,12 +170904,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -164590,12 +170918,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164604,12 +170932,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164618,12 +170946,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -164632,12 +170960,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164646,12 +170974,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164660,12 +170988,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -164674,12 +171002,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164688,12 +171016,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164702,12 +171030,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -164716,12 +171044,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164730,12 +171058,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -164744,12 +171072,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -164758,12 +171086,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164772,12 +171100,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164786,12 +171114,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -164800,12 +171128,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164814,12 +171142,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -164828,12 +171156,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -164842,12 +171170,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -164856,12 +171184,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -164870,12 +171198,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -164884,12 +171212,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -164898,12 +171226,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -164912,12 +171240,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -164926,12 +171254,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -164940,12 +171268,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -164954,12 +171282,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -164968,12 +171296,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -164982,12 +171310,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -164996,12 +171324,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -165010,12 +171338,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -165024,12 +171352,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -165038,12 +171366,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -165052,12 +171380,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -165066,12 +171394,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -165080,12 +171408,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -165094,12 +171422,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -165108,12 +171436,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -165122,12 +171450,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -165136,12 +171464,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -165150,12 +171478,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -165164,12 +171492,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -165178,12 +171506,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -165192,12 +171520,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -165206,12 +171534,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -165220,12 +171548,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -165234,12 +171562,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -165248,12 +171576,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -165262,12 +171590,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -165276,12 +171604,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -165290,12 +171618,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -165304,12 +171632,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -165318,12 +171646,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -165332,12 +171660,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -165346,12 +171674,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -165360,12 +171688,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -165374,12 +171702,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -165388,12 +171716,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -165402,12 +171730,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -165416,12 +171744,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -165430,12 +171758,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -165444,12 +171772,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -165458,12 +171786,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -165472,12 +171800,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -165486,12 +171814,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -165500,12 +171828,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -165514,12 +171842,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -165528,12 +171856,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -165542,12 +171870,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -165556,12 +171884,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -165570,12 +171898,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -165584,12 +171912,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -165598,12 +171926,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -165612,12 +171940,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -165626,12 +171954,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -165640,12 +171968,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -165654,12 +171982,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -165668,12 +171996,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -165682,12 +172010,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -165696,12 +172024,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -165710,12 +172038,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -165724,12 +172052,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -165738,12 +172066,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -165752,12 +172080,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -165766,12 +172094,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -165780,12 +172108,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -165794,12 +172122,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -165808,12 +172136,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -165822,12 +172150,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -165836,12 +172164,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -165850,12 +172178,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -165864,12 +172192,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -165878,12 +172206,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -165892,12 +172220,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -165906,12 +172234,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -165920,12 +172248,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -165934,12 +172262,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -165948,12 +172276,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -165962,12 +172290,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -165976,12 +172304,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -165990,12 +172318,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -166004,12 +172332,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -166018,12 +172346,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -166032,12 +172360,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -166046,12 +172374,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -166060,12 +172388,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -166074,12 +172402,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -166088,12 +172416,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -166102,12 +172430,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -166116,12 +172444,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -166130,12 +172458,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -166144,12 +172472,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -166158,12 +172486,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -166172,12 +172500,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -166186,12 +172514,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -166200,12 +172528,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -166214,12 +172542,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -166228,12 +172556,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -166242,12 +172570,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -166256,12 +172584,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -166270,12 +172598,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -166284,12 +172612,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -166298,12 +172626,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -166312,12 +172640,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -166326,12 +172654,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 3.0, + "block_hardness": 0.8, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -166340,12 +172668,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "end_brick" + "wall_block_type": "sandstone" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -166354,12 +172682,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -166368,12 +172696,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -166382,12 +172710,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 127, "can_break_with_hand": false, "bedrock_states": { @@ -166396,12 +172724,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -166410,12 +172738,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 128, "can_break_with_hand": false, "bedrock_states": { @@ -166424,12 +172752,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -166438,12 +172766,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -166452,12 +172780,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -166466,12 +172794,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 0, "can_break_with_hand": false, "bedrock_states": { @@ -166480,12 +172808,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -166494,12 +172822,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 129, "can_break_with_hand": false, "bedrock_states": { @@ -166508,12 +172836,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -166522,12 +172850,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -166536,12 +172864,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -166550,12 +172878,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -166564,12 +172892,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -166578,12 +172906,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -166592,12 +172920,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -166606,12 +172934,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -166620,12 +172948,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -166634,12 +172962,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -166648,12 +172976,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -166662,12 +172990,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -166676,12 +173004,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -166690,12 +173018,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -166704,12 +173032,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -166718,12 +173046,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 130, "can_break_with_hand": false, "bedrock_states": { @@ -166732,12 +173060,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -166746,12 +173074,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 131, "can_break_with_hand": false, "bedrock_states": { @@ -166760,12 +173088,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -166774,12 +173102,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -166788,12 +173116,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -166802,12 +173130,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 132, "can_break_with_hand": false, "bedrock_states": { @@ -166816,12 +173144,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -166830,12 +173158,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 133, "can_break_with_hand": false, "bedrock_states": { @@ -166844,12 +173172,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -166858,12 +173186,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -166872,12 +173200,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -166886,12 +173214,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -166900,12 +173228,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -166914,12 +173242,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -166928,12 +173256,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -166942,12 +173270,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -166956,12 +173284,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -166970,12 +173298,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -166984,12 +173312,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -166998,12 +173326,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -167012,12 +173340,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -167026,12 +173354,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167040,12 +173368,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167054,12 +173382,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -167068,12 +173396,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167082,12 +173410,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167096,12 +173424,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -167110,12 +173438,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167124,12 +173452,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167138,12 +173466,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -167152,12 +173480,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167166,12 +173494,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167180,12 +173508,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -167194,12 +173522,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167208,12 +173536,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167222,12 +173550,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -167236,12 +173564,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167250,12 +173578,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167264,12 +173592,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -167278,12 +173606,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167292,12 +173620,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167306,12 +173634,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -167320,12 +173648,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167334,12 +173662,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167348,12 +173676,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -167362,12 +173690,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -167376,12 +173704,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -167390,12 +173718,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { @@ -167404,12 +173732,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -167418,12 +173746,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { @@ -167432,12 +173760,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -167446,12 +173774,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -167460,12 +173788,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -167474,12 +173802,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 136, "can_break_with_hand": false, "bedrock_states": { @@ -167488,12 +173816,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -167502,12 +173830,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { @@ -167516,12 +173844,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -167530,12 +173858,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167544,12 +173872,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167558,12 +173886,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -167572,12 +173900,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167586,12 +173914,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167600,12 +173928,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -167614,12 +173942,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167628,12 +173956,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167642,12 +173970,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -167656,12 +173984,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167670,12 +173998,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167684,12 +174012,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -167698,12 +174026,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167712,12 +174040,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167726,12 +174054,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { @@ -167740,12 +174068,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167754,12 +174082,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { @@ -167768,12 +174096,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -167782,12 +174110,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167796,12 +174124,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167810,12 +174138,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { @@ -167824,12 +174152,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167838,12 +174166,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { @@ -167852,12 +174180,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -167866,12 +174194,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -167880,12 +174208,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -167894,12 +174222,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -167908,12 +174236,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -167922,12 +174250,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -167936,12 +174264,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -167950,12 +174278,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -167964,12 +174292,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -167978,12 +174306,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -167992,12 +174320,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -168006,12 +174334,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -168020,12 +174348,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -168034,12 +174362,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -168048,12 +174376,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -168062,12 +174390,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -168076,12 +174404,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -168090,12 +174418,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -168104,12 +174432,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -168118,12 +174446,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -168132,12 +174460,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -168146,12 +174474,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -168160,12 +174488,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -168174,12 +174502,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -168188,12 +174516,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -168202,12 +174530,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -168216,12 +174544,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -168230,12 +174558,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -168244,12 +174572,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -168258,12 +174586,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -168272,12 +174600,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -168286,12 +174614,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -168300,12 +174628,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -168314,12 +174642,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -168328,12 +174656,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -168342,12 +174670,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -168356,12 +174684,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -168370,12 +174698,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -168384,12 +174712,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -168398,12 +174726,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -168412,12 +174740,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -168426,12 +174754,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -168440,12 +174768,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -168454,12 +174782,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -168468,12 +174796,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -168482,12 +174810,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -168496,12 +174824,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -168510,12 +174838,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -168524,12 +174852,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -168538,12 +174866,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -168552,12 +174880,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -168566,12 +174894,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -168580,12 +174908,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -168594,12 +174922,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -168608,12 +174936,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -168622,12 +174950,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -168636,12 +174964,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -168650,12 +174978,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -168664,12 +174992,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -168678,12 +175006,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -168692,12 +175020,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -168706,12 +175034,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -168720,12 +175048,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -168734,12 +175062,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -168748,12 +175076,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -168762,12 +175090,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -168776,12 +175104,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -168790,12 +175118,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -168804,12 +175132,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -168818,12 +175146,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -168832,12 +175160,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -168846,12 +175174,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -168860,12 +175188,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -168874,12 +175202,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -168888,12 +175216,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -168902,12 +175230,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -168916,12 +175244,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -168930,12 +175258,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -168944,12 +175272,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -168958,12 +175286,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -168972,12 +175300,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -168986,12 +175314,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -169000,12 +175328,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -169014,12 +175342,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -169028,12 +175356,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -169042,12 +175370,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -169056,12 +175384,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -169070,12 +175398,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -169084,12 +175412,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -169098,12 +175426,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -169112,12 +175440,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -169126,12 +175454,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -169140,12 +175468,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -169154,12 +175482,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -169168,12 +175496,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -169182,12 +175510,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -169196,12 +175524,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -169210,12 +175538,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -169224,12 +175552,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -169238,12 +175566,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -169252,12 +175580,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -169266,12 +175594,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -169280,12 +175608,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -169294,12 +175622,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -169308,12 +175636,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -169322,12 +175650,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -169336,12 +175664,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -169350,12 +175678,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -169364,12 +175692,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -169378,12 +175706,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -169392,12 +175720,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -169406,12 +175734,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { @@ -169420,12 +175748,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -169434,12 +175762,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { @@ -169448,12 +175776,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -169462,12 +175790,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -169476,12 +175804,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -169490,12 +175818,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { @@ -169504,12 +175832,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -169518,12 +175846,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { @@ -169532,12 +175860,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -169546,12 +175874,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -169560,12 +175888,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -169574,12 +175902,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -169588,12 +175916,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -169602,12 +175930,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -169616,12 +175944,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -169630,12 +175958,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -169644,12 +175972,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -169658,12 +175986,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -169672,12 +176000,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -169686,12 +176014,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -169700,12 +176028,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -169714,12 +176042,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -169728,12 +176056,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -169742,12 +176070,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { @@ -169756,12 +176084,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -169770,12 +176098,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { @@ -169784,12 +176112,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -169798,12 +176126,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -169812,12 +176140,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -169826,12 +176154,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { @@ -169840,12 +176168,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -169854,12 +176182,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { @@ -169868,12 +176196,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -169882,12 +176210,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -169896,12 +176224,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -169910,12 +176238,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -169924,12 +176252,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -169938,12 +176266,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -169952,12 +176280,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -169966,12 +176294,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -169980,12 +176308,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -169994,12 +176322,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -170008,12 +176336,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -170022,12 +176350,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -170036,12 +176364,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -170050,12 +176378,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170064,12 +176392,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170078,12 +176406,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -170092,12 +176420,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170106,12 +176434,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170120,12 +176448,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -170134,12 +176462,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170148,12 +176476,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170162,12 +176490,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -170176,12 +176504,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170190,12 +176518,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170204,12 +176532,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -170218,12 +176546,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170232,12 +176560,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170246,12 +176574,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -170260,12 +176588,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170274,12 +176602,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170288,12 +176616,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -170302,12 +176630,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170316,12 +176644,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170330,12 +176658,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -170344,12 +176672,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170358,12 +176686,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170372,12 +176700,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -170386,12 +176714,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -170400,12 +176728,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -170414,12 +176742,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 150, "can_break_with_hand": false, "bedrock_states": { @@ -170428,12 +176756,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -170442,12 +176770,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 151, "can_break_with_hand": false, "bedrock_states": { @@ -170456,12 +176784,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -170470,12 +176798,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -170484,12 +176812,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -170498,12 +176826,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 152, "can_break_with_hand": false, "bedrock_states": { @@ -170512,12 +176840,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -170526,12 +176854,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 153, "can_break_with_hand": false, "bedrock_states": { @@ -170540,12 +176868,12 @@ "wall_connection_type_south": "none", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -170554,12 +176882,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170568,12 +176896,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170582,12 +176910,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -170596,12 +176924,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170610,12 +176938,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170624,12 +176952,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -170638,12 +176966,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170652,12 +176980,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170666,12 +176994,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -170680,12 +177008,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170694,12 +177022,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170708,12 +177036,12 @@ "wall_connection_type_south": "short", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -170722,12 +177050,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170736,12 +177064,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170750,12 +177078,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { @@ -170764,12 +177092,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170778,12 +177106,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { @@ -170792,12 +177120,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": true, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -170806,12 +177134,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170820,12 +177148,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170834,12 +177162,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { @@ -170848,12 +177176,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "none", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170862,12 +177190,12 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "short", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:cobblestone_wall", - "block_hardness": 1.5, + "block_hardness": 3.0, "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { @@ -170876,2073 +177204,6609 @@ "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", "wall_post_bit": false, - "wall_block_type": "diorite" + "wall_block_type": "end_brick" } }, - "minecraft:scaffolding[bottom=true,distance=0,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 127, + "can_break_with_hand": false, "bedrock_states": { - "stability": 0, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=0,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 128, + "can_break_with_hand": false, "bedrock_states": { - "stability": 0, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=1,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 128, + "can_break_with_hand": false, "bedrock_states": { - "stability": 1, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=1,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 127, + "can_break_with_hand": false, "bedrock_states": { - "stability": 1, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=2,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 128, + "can_break_with_hand": false, "bedrock_states": { - "stability": 2, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=2,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 128, + "can_break_with_hand": false, "bedrock_states": { - "stability": 2, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=3,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 0, + "can_break_with_hand": false, "bedrock_states": { - "stability": 3, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=3,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 129, + "can_break_with_hand": false, "bedrock_states": { - "stability": 3, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=4,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 129, + "can_break_with_hand": false, "bedrock_states": { - "stability": 4, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=4,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 0, + "can_break_with_hand": false, "bedrock_states": { - "stability": 4, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=5,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 129, + "can_break_with_hand": false, "bedrock_states": { - "stability": 5, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=5,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 129, + "can_break_with_hand": false, "bedrock_states": { - "stability": 5, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=6,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, "bedrock_states": { - "stability": 6, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=6,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, "bedrock_states": { - "stability": 6, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=7,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, "bedrock_states": { - "stability": 7, - "stability_check": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=true,distance=7,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, "bedrock_states": { - "stability": 7, - "stability_check": false - } - }, - "minecraft:scaffolding[bottom=false,distance=0,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, - "bedrock_states": { - "stability": 0, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=0,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, "bedrock_states": { - "stability": 0, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=1,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, "bedrock_states": { - "stability": 1, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=1,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, "bedrock_states": { - "stability": 1, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=2,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, "bedrock_states": { - "stability": 2, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=2,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, "bedrock_states": { - "stability": 2, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=3,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, "bedrock_states": { - "stability": 3, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=3,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, "bedrock_states": { - "stability": 3, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=4,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, "bedrock_states": { - "stability": 4, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=4,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, "bedrock_states": { - "stability": 4, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=5,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, "bedrock_states": { - "stability": 5, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=5,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, "bedrock_states": { - "stability": 5, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=6,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, "bedrock_states": { - "stability": 6, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=6,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, "bedrock_states": { - "stability": 6, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=7,waterlogged=true]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, "bedrock_states": { - "stability": 7, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:scaffolding[bottom=false,distance=7,waterlogged=false]": { - "bedrock_identifier": "minecraft:scaffolding", - "block_hardness": 0.0, - "collision_index": 247, - "piston_behavior": "destroy", - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, "bedrock_states": { - "stability": 7, - "stability_check": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:loom[facing=north]": { - "bedrock_identifier": "minecraft:loom", - "block_hardness": 2.5, - "collision_index": 1, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, "bedrock_states": { - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:loom[facing=south]": { - "bedrock_identifier": "minecraft:loom", - "block_hardness": 2.5, - "collision_index": 1, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, "bedrock_states": { - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:loom[facing=west]": { - "bedrock_identifier": "minecraft:loom", - "block_hardness": 2.5, - "collision_index": 1, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, "bedrock_states": { - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:loom[facing=east]": { - "bedrock_identifier": "minecraft:loom", - "block_hardness": 2.5, - "collision_index": 1, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, "bedrock_states": { - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=north,open=true]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 2, - "open_bit": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=north,open=false]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 2, - "open_bit": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=east,open=true]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 5, - "open_bit": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=east,open=false]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 5, - "open_bit": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=south,open=true]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 3, - "open_bit": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=south,open=false]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 3, - "open_bit": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=west,open=true]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 4, - "open_bit": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=west,open=false]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 4, - "open_bit": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=up,open=true]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 1, - "open_bit": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=up,open=false]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 1, - "open_bit": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=down,open=true]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 0, - "open_bit": true + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:barrel[facing=down,open=false]": { - "bedrock_identifier": "minecraft:barrel", - "block_hardness": 2.5, - "collision_index": 1, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 0, - "open_bit": false + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:smoker[facing=north,lit=true]": { - "bedrock_identifier": "minecraft:lit_smoker", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 137, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:smoker[facing=north,lit=false]": { - "bedrock_identifier": "minecraft:smoker", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:smoker[facing=south,lit=true]": { - "bedrock_identifier": "minecraft:lit_smoker", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:smoker[facing=south,lit=false]": { - "bedrock_identifier": "minecraft:smoker", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:smoker[facing=west,lit=true]": { - "bedrock_identifier": "minecraft:lit_smoker", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 4 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:smoker[facing=west,lit=false]": { - "bedrock_identifier": "minecraft:smoker", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 4 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:smoker[facing=east,lit=true]": { - "bedrock_identifier": "minecraft:lit_smoker", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 5 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:smoker[facing=east,lit=false]": { - "bedrock_identifier": "minecraft:smoker", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 5 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:blast_furnace[facing=north,lit=true]": { - "bedrock_identifier": "minecraft:lit_blast_furnace", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:blast_furnace[facing=north,lit=false]": { - "bedrock_identifier": "minecraft:blast_furnace", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:blast_furnace[facing=south,lit=true]": { - "bedrock_identifier": "minecraft:lit_blast_furnace", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:blast_furnace[facing=south,lit=false]": { - "bedrock_identifier": "minecraft:blast_furnace", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:blast_furnace[facing=west,lit=true]": { - "bedrock_identifier": "minecraft:lit_blast_furnace", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 4 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:blast_furnace[facing=west,lit=false]": { - "bedrock_identifier": "minecraft:blast_furnace", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 4 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:blast_furnace[facing=east,lit=true]": { - "bedrock_identifier": "minecraft:lit_blast_furnace", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 5 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:blast_furnace[facing=east,lit=false]": { - "bedrock_identifier": "minecraft:blast_furnace", - "block_hardness": 3.5, - "collision_index": 1, - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 5 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:cartography_table": { - "bedrock_identifier": "minecraft:cartography_table", - "block_hardness": 2.5, - "collision_index": 1, - "can_break_with_hand": true - }, - "minecraft:fletching_table": { - "bedrock_identifier": "minecraft:fletching_table", - "block_hardness": 2.5, - "collision_index": 1, - "can_break_with_hand": true - }, - "minecraft:grindstone[face=floor,facing=north]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 248, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=floor,facing=south]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 248, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=floor,facing=west]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 249, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=floor,facing=east]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 249, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=wall,facing=north]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 250, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=wall,facing=south]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 251, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=wall,facing=west]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 252, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=wall,facing=east]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 253, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=ceiling,facing=north]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 254, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=ceiling,facing=south]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 254, - "piston_behavior": "block", - "can_break_with_hand": false, - "bedrock_states": { - "attachment": "hanging", - "direction": 0 - } - }, - "minecraft:grindstone[face=ceiling,facing=west]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 255, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:grindstone[face=ceiling,facing=east]": { - "bedrock_identifier": "minecraft:grindstone", - "block_hardness": 2.0, - "collision_index": 255, - "piston_behavior": "block", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "direction": 3 - } - }, - "minecraft:lectern[facing=north,has_book=true,powered=true]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, - "bedrock_states": { - "powered_bit": true, - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=north,has_book=true,powered=false]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": false, - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=north,has_book=false,powered=true]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": true, - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=north,has_book=false,powered=false]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": false, - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=south,has_book=true,powered=true]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": true, - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=south,has_book=true,powered=false]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": false, - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=south,has_book=false,powered=true]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": true, - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=south,has_book=false,powered=false]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": false, - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=west,has_book=true,powered=true]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": true, - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=west,has_book=true,powered=false]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": false, - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=west,has_book=false,powered=true]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": true, - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=west,has_book=false,powered=false]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": false, - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=east,has_book=true,powered=true]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": true, - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=east,has_book=true,powered=false]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": false, - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=east,has_book=false,powered=true]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": true, - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lectern[facing=east,has_book=false,powered=false]": { - "bedrock_identifier": "minecraft:lectern", - "block_hardness": 2.5, - "collision_index": 256, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, "bedrock_states": { - "powered_bit": false, - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:smithing_table": { - "bedrock_identifier": "minecraft:smithing_table", - "block_hardness": 2.5, - "collision_index": 1, - "can_break_with_hand": true - }, - "minecraft:stonecutter[facing=north]": { - "bedrock_identifier": "minecraft:stonecutter_block", - "block_hardness": 3.5, - "collision_index": 257, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:stonecutter[facing=south]": { - "bedrock_identifier": "minecraft:stonecutter_block", - "block_hardness": 3.5, - "collision_index": 257, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:stonecutter[facing=west]": { - "bedrock_identifier": "minecraft:stonecutter_block", - "block_hardness": 3.5, - "collision_index": 257, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 4 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:stonecutter[facing=east]": { - "bedrock_identifier": "minecraft:stonecutter_block", - "block_hardness": 3.5, - "collision_index": 257, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "facing_direction": 5 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=floor,facing=north,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 258, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "toggle_bit": true, - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=floor,facing=north,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 258, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "toggle_bit": false, - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=floor,facing=south,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 258, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "toggle_bit": true, - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=floor,facing=south,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 258, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "toggle_bit": false, - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=floor,facing=west,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 259, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "toggle_bit": true, - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=floor,facing=west,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 259, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "toggle_bit": false, - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=floor,facing=east,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 259, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 138, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "toggle_bit": true, - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=floor,facing=east,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 259, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "attachment": "standing", - "toggle_bit": false, - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=ceiling,facing=north,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 260, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 139, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "toggle_bit": true, - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=ceiling,facing=north,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 260, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "toggle_bit": false, - "direction": 0 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=ceiling,facing=south,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 260, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "toggle_bit": true, - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=ceiling,facing=south,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 260, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "toggle_bit": false, - "direction": 2 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=ceiling,facing=west,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 260, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 140, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "toggle_bit": true, - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=ceiling,facing=west,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 260, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "toggle_bit": false, - "direction": 3 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=ceiling,facing=east,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 260, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 141, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "toggle_bit": true, - "direction": 1 + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=ceiling,facing=east,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 260, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { - "attachment": "hanging", - "toggle_bit": false, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=single_wall,facing=north,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 261, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "toggle_bit": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=single_wall,facing=north,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 261, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "toggle_bit": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=single_wall,facing=south,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 262, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 142, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "toggle_bit": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=single_wall,facing=south,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 262, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "toggle_bit": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=single_wall,facing=west,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 263, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 143, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "toggle_bit": true, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=single_wall,facing=west,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 263, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "toggle_bit": false, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=single_wall,facing=east,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 264, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "toggle_bit": true, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=single_wall,facing=east,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 264, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { - "attachment": "side", - "toggle_bit": false, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=double_wall,facing=north,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 265, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 144, "can_break_with_hand": false, "bedrock_states": { - "attachment": "multiple", - "toggle_bit": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=double_wall,facing=north,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 265, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { - "attachment": "multiple", - "toggle_bit": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=double_wall,facing=south,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 265, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 145, "can_break_with_hand": false, "bedrock_states": { - "attachment": "multiple", - "toggle_bit": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=double_wall,facing=south,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 265, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { - "attachment": "multiple", - "toggle_bit": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=double_wall,facing=west,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 266, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { - "attachment": "multiple", - "toggle_bit": true, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=double_wall,facing=west,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 266, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { - "attachment": "multiple", - "toggle_bit": false, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=double_wall,facing=east,powered=true]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 266, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { - "attachment": "multiple", - "toggle_bit": true, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:bell[attachment=double_wall,facing=east,powered=false]": { - "bedrock_identifier": "minecraft:bell", - "block_hardness": 5.0, - "collision_index": 266, - "piston_behavior": "destroy", - "has_block_entity": true, + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { - "attachment": "multiple", - "toggle_bit": false, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lantern[hanging=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:lantern", - "block_hardness": 3.5, - "collision_index": 267, - "piston_behavior": "destroy", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, "can_break_with_hand": false, "bedrock_states": { - "hanging": true + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:lantern[hanging=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:lantern", - "block_hardness": 3.5, - "collision_index": 267, - "piston_behavior": "destroy", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { - "hanging": true + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:lantern[hanging=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:lantern", - "block_hardness": 3.5, - "collision_index": 268, - "piston_behavior": "destroy", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { - "hanging": false + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:lantern[hanging=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:lantern", - "block_hardness": 3.5, - "collision_index": 268, - "piston_behavior": "destroy", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { - "hanging": false + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_lantern[hanging=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_lantern", - "block_hardness": 3.5, - "collision_index": 267, - "piston_behavior": "destroy", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 148, "can_break_with_hand": false, "bedrock_states": { - "hanging": true + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_lantern[hanging=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_lantern", - "block_hardness": 3.5, - "collision_index": 267, - "piston_behavior": "destroy", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { - "hanging": true + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_lantern[hanging=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_lantern", - "block_hardness": 3.5, - "collision_index": 268, - "piston_behavior": "destroy", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, "can_break_with_hand": false, "bedrock_states": { - "hanging": false + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_lantern[hanging=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_lantern", - "block_hardness": 3.5, - "collision_index": 268, - "piston_behavior": "destroy", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 146, "can_break_with_hand": false, "bedrock_states": { - "hanging": false + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 1 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 3 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 2 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": false, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" } }, - "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:soul_campfire", - "block_hardness": 2.0, - "collision_index": 269, - "has_block_entity": true, - "can_break_with_hand": true, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, "bedrock_states": { - "extinguished": true, - "direction": 0 + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite" + } + }, + "minecraft:scaffolding[bottom=true,distance=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 0, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 0, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 1, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 1, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 2, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 2, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 3, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 3, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 4, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 4, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 5, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 5, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 6, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 6, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 7, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=true,distance=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 7, + "stability_check": false + } + }, + "minecraft:scaffolding[bottom=false,distance=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 0, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 0, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 1, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 1, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 2, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 2, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 3, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 3, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 4, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 4, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 5, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 5, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 6, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 6, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 7, + "stability_check": true + } + }, + "minecraft:scaffolding[bottom=false,distance=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:scaffolding", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "stability": 7, + "stability_check": true + } + }, + "minecraft:loom[facing=north]": { + "bedrock_identifier": "minecraft:loom", + "block_hardness": 2.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2 + } + }, + "minecraft:loom[facing=south]": { + "bedrock_identifier": "minecraft:loom", + "block_hardness": 2.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0 + } + }, + "minecraft:loom[facing=west]": { + "bedrock_identifier": "minecraft:loom", + "block_hardness": 2.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1 + } + }, + "minecraft:loom[facing=east]": { + "bedrock_identifier": "minecraft:loom", + "block_hardness": 2.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3 + } + }, + "minecraft:barrel[facing=north,open=true]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "open_bit": true + } + }, + "minecraft:barrel[facing=north,open=false]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "open_bit": false + } + }, + "minecraft:barrel[facing=east,open=true]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "open_bit": true + } + }, + "minecraft:barrel[facing=east,open=false]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "open_bit": false + } + }, + "minecraft:barrel[facing=south,open=true]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "open_bit": true + } + }, + "minecraft:barrel[facing=south,open=false]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "open_bit": false + } + }, + "minecraft:barrel[facing=west,open=true]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "open_bit": true + } + }, + "minecraft:barrel[facing=west,open=false]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "open_bit": false + } + }, + "minecraft:barrel[facing=up,open=true]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "open_bit": true + } + }, + "minecraft:barrel[facing=up,open=false]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1, + "open_bit": false + } + }, + "minecraft:barrel[facing=down,open=true]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "open_bit": true + } + }, + "minecraft:barrel[facing=down,open=false]": { + "bedrock_identifier": "minecraft:barrel", + "block_hardness": 2.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0, + "open_bit": false + } + }, + "minecraft:smoker[facing=north,lit=true]": { + "bedrock_identifier": "minecraft:lit_smoker", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:smoker[facing=north,lit=false]": { + "bedrock_identifier": "minecraft:smoker", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:smoker[facing=south,lit=true]": { + "bedrock_identifier": "minecraft:lit_smoker", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:smoker[facing=south,lit=false]": { + "bedrock_identifier": "minecraft:smoker", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:smoker[facing=west,lit=true]": { + "bedrock_identifier": "minecraft:lit_smoker", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:smoker[facing=west,lit=false]": { + "bedrock_identifier": "minecraft:smoker", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:smoker[facing=east,lit=true]": { + "bedrock_identifier": "minecraft:lit_smoker", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:smoker[facing=east,lit=false]": { + "bedrock_identifier": "minecraft:smoker", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:blast_furnace[facing=north,lit=true]": { + "bedrock_identifier": "minecraft:lit_blast_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:blast_furnace[facing=north,lit=false]": { + "bedrock_identifier": "minecraft:blast_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:blast_furnace[facing=south,lit=true]": { + "bedrock_identifier": "minecraft:lit_blast_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:blast_furnace[facing=south,lit=false]": { + "bedrock_identifier": "minecraft:blast_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:blast_furnace[facing=west,lit=true]": { + "bedrock_identifier": "minecraft:lit_blast_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:blast_furnace[facing=west,lit=false]": { + "bedrock_identifier": "minecraft:blast_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:blast_furnace[facing=east,lit=true]": { + "bedrock_identifier": "minecraft:lit_blast_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:blast_furnace[facing=east,lit=false]": { + "bedrock_identifier": "minecraft:blast_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:cartography_table": { + "bedrock_identifier": "minecraft:cartography_table", + "block_hardness": 2.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:fletching_table": { + "bedrock_identifier": "minecraft:fletching_table", + "block_hardness": 2.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:grindstone[face=floor,facing=north]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 248, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "direction": 2 + } + }, + "minecraft:grindstone[face=floor,facing=south]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 248, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "direction": 0 + } + }, + "minecraft:grindstone[face=floor,facing=west]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 249, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "direction": 1 + } + }, + "minecraft:grindstone[face=floor,facing=east]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 249, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "direction": 3 + } + }, + "minecraft:grindstone[face=wall,facing=north]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 250, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "direction": 2 + } + }, + "minecraft:grindstone[face=wall,facing=south]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 251, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "direction": 0 + } + }, + "minecraft:grindstone[face=wall,facing=west]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 252, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "direction": 1 + } + }, + "minecraft:grindstone[face=wall,facing=east]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 253, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "direction": 3 + } + }, + "minecraft:grindstone[face=ceiling,facing=north]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 254, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "direction": 2 + } + }, + "minecraft:grindstone[face=ceiling,facing=south]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 254, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "direction": 0 + } + }, + "minecraft:grindstone[face=ceiling,facing=west]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 255, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "direction": 1 + } + }, + "minecraft:grindstone[face=ceiling,facing=east]": { + "bedrock_identifier": "minecraft:grindstone", + "block_hardness": 2.0, + "collision_index": 255, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "direction": 3 + } + }, + "minecraft:lectern[facing=north,has_book=true,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "direction": 2 + } + }, + "minecraft:lectern[facing=north,has_book=true,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "direction": 2 + } + }, + "minecraft:lectern[facing=north,has_book=false,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "direction": 2 + } + }, + "minecraft:lectern[facing=north,has_book=false,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "direction": 2 + } + }, + "minecraft:lectern[facing=south,has_book=true,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "direction": 0 + } + }, + "minecraft:lectern[facing=south,has_book=true,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "direction": 0 + } + }, + "minecraft:lectern[facing=south,has_book=false,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "direction": 0 + } + }, + "minecraft:lectern[facing=south,has_book=false,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "direction": 0 + } + }, + "minecraft:lectern[facing=west,has_book=true,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "direction": 1 + } + }, + "minecraft:lectern[facing=west,has_book=true,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "direction": 1 + } + }, + "minecraft:lectern[facing=west,has_book=false,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "direction": 1 + } + }, + "minecraft:lectern[facing=west,has_book=false,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "direction": 1 + } + }, + "minecraft:lectern[facing=east,has_book=true,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "direction": 3 + } + }, + "minecraft:lectern[facing=east,has_book=true,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "direction": 3 + } + }, + "minecraft:lectern[facing=east,has_book=false,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "direction": 3 + } + }, + "minecraft:lectern[facing=east,has_book=false,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "direction": 3 + } + }, + "minecraft:smithing_table": { + "bedrock_identifier": "minecraft:smithing_table", + "block_hardness": 2.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:stonecutter[facing=north]": { + "bedrock_identifier": "minecraft:stonecutter_block", + "block_hardness": 3.5, + "collision_index": 257, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:stonecutter[facing=south]": { + "bedrock_identifier": "minecraft:stonecutter_block", + "block_hardness": 3.5, + "collision_index": 257, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:stonecutter[facing=west]": { + "bedrock_identifier": "minecraft:stonecutter_block", + "block_hardness": 3.5, + "collision_index": 257, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:stonecutter[facing=east]": { + "bedrock_identifier": "minecraft:stonecutter_block", + "block_hardness": 3.5, + "collision_index": 257, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:bell[attachment=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 258, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "toggle_bit": true, + "direction": 0 + } + }, + "minecraft:bell[attachment=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 258, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "toggle_bit": false, + "direction": 0 + } + }, + "minecraft:bell[attachment=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 258, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "toggle_bit": true, + "direction": 2 + } + }, + "minecraft:bell[attachment=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 258, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "toggle_bit": false, + "direction": 2 + } + }, + "minecraft:bell[attachment=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 259, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "toggle_bit": true, + "direction": 3 + } + }, + "minecraft:bell[attachment=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 259, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "toggle_bit": false, + "direction": 3 + } + }, + "minecraft:bell[attachment=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 259, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "toggle_bit": true, + "direction": 1 + } + }, + "minecraft:bell[attachment=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 259, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "standing", + "toggle_bit": false, + "direction": 1 + } + }, + "minecraft:bell[attachment=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 260, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "toggle_bit": true, + "direction": 0 + } + }, + "minecraft:bell[attachment=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 260, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "toggle_bit": false, + "direction": 0 + } + }, + "minecraft:bell[attachment=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 260, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "toggle_bit": true, + "direction": 2 + } + }, + "minecraft:bell[attachment=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 260, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "toggle_bit": false, + "direction": 2 + } + }, + "minecraft:bell[attachment=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 260, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "toggle_bit": true, + "direction": 3 + } + }, + "minecraft:bell[attachment=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 260, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "toggle_bit": false, + "direction": 3 + } + }, + "minecraft:bell[attachment=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 260, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "toggle_bit": true, + "direction": 1 + } + }, + "minecraft:bell[attachment=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 260, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "hanging", + "toggle_bit": false, + "direction": 1 + } + }, + "minecraft:bell[attachment=single_wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 261, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "toggle_bit": true, + "direction": 0 + } + }, + "minecraft:bell[attachment=single_wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 261, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "toggle_bit": false, + "direction": 0 + } + }, + "minecraft:bell[attachment=single_wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 262, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "toggle_bit": true, + "direction": 2 + } + }, + "minecraft:bell[attachment=single_wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 262, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "toggle_bit": false, + "direction": 2 + } + }, + "minecraft:bell[attachment=single_wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 263, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "toggle_bit": true, + "direction": 3 + } + }, + "minecraft:bell[attachment=single_wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 263, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "toggle_bit": false, + "direction": 3 + } + }, + "minecraft:bell[attachment=single_wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 264, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "toggle_bit": true, + "direction": 1 + } + }, + "minecraft:bell[attachment=single_wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 264, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "side", + "toggle_bit": false, + "direction": 1 + } + }, + "minecraft:bell[attachment=double_wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 265, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "multiple", + "toggle_bit": true, + "direction": 0 + } + }, + "minecraft:bell[attachment=double_wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 265, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "multiple", + "toggle_bit": false, + "direction": 0 + } + }, + "minecraft:bell[attachment=double_wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 265, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "multiple", + "toggle_bit": true, + "direction": 2 + } + }, + "minecraft:bell[attachment=double_wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 265, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "multiple", + "toggle_bit": false, + "direction": 2 + } + }, + "minecraft:bell[attachment=double_wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 266, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "multiple", + "toggle_bit": true, + "direction": 3 + } + }, + "minecraft:bell[attachment=double_wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 266, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "multiple", + "toggle_bit": false, + "direction": 3 + } + }, + "minecraft:bell[attachment=double_wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 266, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "multiple", + "toggle_bit": true, + "direction": 1 + } + }, + "minecraft:bell[attachment=double_wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 266, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "attachment": "multiple", + "toggle_bit": false, + "direction": 1 + } + }, + "minecraft:lantern[hanging=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lantern", + "block_hardness": 3.5, + "collision_index": 267, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "hanging": true + } + }, + "minecraft:lantern[hanging=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lantern", + "block_hardness": 3.5, + "collision_index": 267, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "hanging": true + } + }, + "minecraft:lantern[hanging=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lantern", + "block_hardness": 3.5, + "collision_index": 268, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "hanging": false + } + }, + "minecraft:lantern[hanging=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lantern", + "block_hardness": 3.5, + "collision_index": 268, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "hanging": false + } + }, + "minecraft:soul_lantern[hanging=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_lantern", + "block_hardness": 3.5, + "collision_index": 267, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "hanging": true + } + }, + "minecraft:soul_lantern[hanging=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_lantern", + "block_hardness": 3.5, + "collision_index": 267, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "hanging": true + } + }, + "minecraft:soul_lantern[hanging=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_lantern", + "block_hardness": 3.5, + "collision_index": 268, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "hanging": false + } + }, + "minecraft:soul_lantern[hanging=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_lantern", + "block_hardness": 3.5, + "collision_index": 268, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "hanging": false + } + }, + "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 2 + } + }, + "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 2 + } + }, + "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 2 + } + }, + "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 2 + } + }, + "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 2 + } + }, + "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 2 + } + }, + "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 2 + } + }, + "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 2 + } + }, + "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 0 + } + }, + "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 0 + } + }, + "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 0 + } + }, + "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 0 + } + }, + "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 0 + } + }, + "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 0 + } + }, + "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 0 + } + }, + "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 0 + } + }, + "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 1 + } + }, + "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 1 + } + }, + "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 1 + } + }, + "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 1 + } + }, + "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 1 + } + }, + "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 1 + } + }, + "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 1 + } + }, + "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 1 + } + }, + "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 3 + } + }, + "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 3 + } + }, + "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 3 + } + }, + "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 3 + } + }, + "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 3 + } + }, + "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 3 + } + }, + "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 3 + } + }, + "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 3 + } + }, + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 2 + } + }, + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 2 + } + }, + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 2 + } + }, + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 2 + } + }, + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 2 + } + }, + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 2 + } + }, + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 2 + } + }, + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 2 + } + }, + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 0 + } + }, + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 0 + } + }, + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 0 + } + }, + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "direction": 0 + } + }, + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 0 + } + }, + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 0 + } + }, + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 0 + } + }, + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 269, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "direction": 0 } }, "minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": { @@ -196578,1219 +207442,2627 @@ "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 147, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": true, "wall_connection_type_south": "short", "wall_connection_type_west": "short", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 147, + "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": true, "wall_connection_type_south": "short", "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 148, + "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "short", "wall_connection_type_west": "none", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 149, + "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "short", "wall_connection_type_west": "short", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 149, + "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "short", "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 148, + "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "short", "wall_connection_type_west": "none", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 149, + "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "short", "wall_connection_type_west": "short", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 149, + "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "short", "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 146, + "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": true, "wall_connection_type_south": "tall", "wall_connection_type_west": "none", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 147, + "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": true, "wall_connection_type_south": "tall", "wall_connection_type_west": "short", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 147, + "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": true, "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 146, + "collision_index": 154, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": true, "wall_connection_type_south": "tall", "wall_connection_type_west": "none", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 147, + "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": true, "wall_connection_type_south": "tall", "wall_connection_type_west": "short", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 147, + "collision_index": 155, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": true, "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 148, + "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "tall", "wall_connection_type_west": "none", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 149, + "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "tall", "wall_connection_type_west": "short", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 149, + "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 148, + "collision_index": 156, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "tall", "wall_connection_type_west": "none", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 149, + "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "tall", "wall_connection_type_west": "short", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "block_hardness": 2.0, - "collision_index": 149, + "collision_index": 157, "can_break_with_hand": false, "bedrock_states": { "wall_connection_type_east": "tall", "wall_post_bit": false, "wall_connection_type_south": "tall", "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" + "wall_connection_type_north": "tall" } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", + "minecraft:chiseled_nether_bricks": { + "bedrock_identifier": "minecraft:chiseled_nether_bricks", "block_hardness": 2.0, - "collision_index": 150, - "can_break_with_hand": false, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cracked_nether_bricks": { + "bedrock_identifier": "minecraft:cracked_nether_bricks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:quartz_bricks": { + "bedrock_identifier": "minecraft:quartz_bricks", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 0, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 151, - "can_break_with_hand": false, + "minecraft:candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 0, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 151, - "can_break_with_hand": false, + "minecraft:candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 0, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 150, - "can_break_with_hand": false, + "minecraft:candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 0, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 151, - "can_break_with_hand": false, + "minecraft:candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 1, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 151, - "can_break_with_hand": false, + "minecraft:candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 1, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 152, - "can_break_with_hand": false, + "minecraft:candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 153, - "can_break_with_hand": false, + "minecraft:candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 153, - "can_break_with_hand": false, + "minecraft:candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 152, - "can_break_with_hand": false, + "minecraft:candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 153, - "can_break_with_hand": false, + "minecraft:candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 153, - "can_break_with_hand": false, + "minecraft:candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 154, - "can_break_with_hand": false, + "minecraft:candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 3, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 154, - "can_break_with_hand": false, + "minecraft:candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 3, + "lit": false + } + }, + "minecraft:white_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:white_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:white_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:white_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:white_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:white_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:white_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:white_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:white_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:white_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:white_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:white_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:white_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:white_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:white_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:white_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:orange_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:orange_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:orange_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:orange_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:orange_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:orange_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:orange_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:orange_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:orange_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:orange_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:orange_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:orange_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:orange_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:orange_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:orange_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:orange_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:orange_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:magenta_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:magenta_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:magenta_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:magenta_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:magenta_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:magenta_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:magenta_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:magenta_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:magenta_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:magenta_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:magenta_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:magenta_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:magenta_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:magenta_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:magenta_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:magenta_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:magenta_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 156, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 156, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 3, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 154, - "can_break_with_hand": false, + "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 3, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 0, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 0, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 154, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 0, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 0, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 1, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 156, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 1, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 156, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 150, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 151, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 151, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 150, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 151, - "can_break_with_hand": false, + "minecraft:yellow_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 151, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 0, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 152, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 0, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 153, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 0, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 153, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 0, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 152, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 1, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 153, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 1, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 153, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 154, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 154, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 156, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:lime_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 156, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 0, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 0, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 0, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 154, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 271, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 0, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 1, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 1, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 154, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 272, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 1, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 155, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 156, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 273, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 2, + "lit": false } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 156, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": true } }, - "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "block_hardness": 2.0, - "collision_index": 157, - "can_break_with_hand": false, + "minecraft:pink_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, "bedrock_states": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" + "candles": 3, + "lit": false } }, - "minecraft:chiseled_nether_bricks": { - "bedrock_identifier": "minecraft:chiseled_nether_bricks", - "block_hardness": 2.0, - "collision_index": 1, - "can_break_with_hand": false - }, - "minecraft:cracked_nether_bricks": { - "bedrock_identifier": "minecraft:cracked_nether_bricks", - "block_hardness": 2.0, - "collision_index": 1, - "can_break_with_hand": false - }, - "minecraft:quartz_bricks": { - "bedrock_identifier": "minecraft:quartz_bricks", - "block_hardness": 0.8, - "collision_index": 1, - "can_break_with_hand": false + "minecraft:pink_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 274, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } }, - "minecraft:candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -197800,8 +210072,8 @@ "lit": true } }, - "minecraft:candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -197811,8 +210083,8 @@ "lit": true } }, - "minecraft:candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -197822,8 +210094,8 @@ "lit": false } }, - "minecraft:candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -197833,8 +210105,8 @@ "lit": false } }, - "minecraft:candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -197844,8 +210116,8 @@ "lit": true } }, - "minecraft:candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -197855,8 +210127,8 @@ "lit": true } }, - "minecraft:candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -197866,8 +210138,8 @@ "lit": false } }, - "minecraft:candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -197877,8 +210149,8 @@ "lit": false } }, - "minecraft:candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -197888,8 +210160,8 @@ "lit": true } }, - "minecraft:candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -197899,8 +210171,8 @@ "lit": true } }, - "minecraft:candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -197910,8 +210182,8 @@ "lit": false } }, - "minecraft:candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -197921,8 +210193,8 @@ "lit": false } }, - "minecraft:candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -197932,8 +210204,8 @@ "lit": true } }, - "minecraft:candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -197943,8 +210215,8 @@ "lit": true } }, - "minecraft:candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -197954,8 +210226,8 @@ "lit": false } }, - "minecraft:candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:candle", + "minecraft:gray_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -197965,8 +210237,8 @@ "lit": false } }, - "minecraft:white_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -197976,8 +210248,8 @@ "lit": true } }, - "minecraft:white_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -197987,8 +210259,8 @@ "lit": true } }, - "minecraft:white_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -197998,8 +210270,8 @@ "lit": false } }, - "minecraft:white_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198009,8 +210281,8 @@ "lit": false } }, - "minecraft:white_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198020,8 +210292,8 @@ "lit": true } }, - "minecraft:white_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198031,8 +210303,8 @@ "lit": true } }, - "minecraft:white_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198042,8 +210314,8 @@ "lit": false } }, - "minecraft:white_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198053,8 +210325,8 @@ "lit": false } }, - "minecraft:white_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198064,8 +210336,8 @@ "lit": true } }, - "minecraft:white_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198075,8 +210347,8 @@ "lit": true } }, - "minecraft:white_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198086,8 +210358,8 @@ "lit": false } }, - "minecraft:white_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198097,8 +210369,8 @@ "lit": false } }, - "minecraft:white_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198108,8 +210380,8 @@ "lit": true } }, - "minecraft:white_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198119,8 +210391,8 @@ "lit": true } }, - "minecraft:white_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198130,8 +210402,8 @@ "lit": false } }, - "minecraft:white_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:white_candle", + "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198141,8 +210413,8 @@ "lit": false } }, - "minecraft:orange_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198152,8 +210424,8 @@ "lit": true } }, - "minecraft:orange_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198163,8 +210435,8 @@ "lit": true } }, - "minecraft:orange_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198174,8 +210446,8 @@ "lit": false } }, - "minecraft:orange_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198185,8 +210457,8 @@ "lit": false } }, - "minecraft:orange_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198196,8 +210468,8 @@ "lit": true } }, - "minecraft:orange_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198207,8 +210479,8 @@ "lit": true } }, - "minecraft:orange_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198218,8 +210490,8 @@ "lit": false } }, - "minecraft:orange_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198229,8 +210501,8 @@ "lit": false } }, - "minecraft:orange_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198240,8 +210512,8 @@ "lit": true } }, - "minecraft:orange_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198251,8 +210523,8 @@ "lit": true } }, - "minecraft:orange_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198262,8 +210534,8 @@ "lit": false } }, - "minecraft:orange_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198273,8 +210545,8 @@ "lit": false } }, - "minecraft:orange_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198284,8 +210556,8 @@ "lit": true } }, - "minecraft:orange_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198295,8 +210567,8 @@ "lit": true } }, - "minecraft:orange_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198306,8 +210578,8 @@ "lit": false } }, - "minecraft:orange_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:orange_candle", + "minecraft:cyan_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198317,8 +210589,8 @@ "lit": false } }, - "minecraft:magenta_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198328,8 +210600,8 @@ "lit": true } }, - "minecraft:magenta_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198339,8 +210611,8 @@ "lit": true } }, - "minecraft:magenta_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198350,8 +210622,8 @@ "lit": false } }, - "minecraft:magenta_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198361,8 +210633,8 @@ "lit": false } }, - "minecraft:magenta_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198372,8 +210644,8 @@ "lit": true } }, - "minecraft:magenta_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198383,8 +210655,8 @@ "lit": true } }, - "minecraft:magenta_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198394,8 +210666,8 @@ "lit": false } }, - "minecraft:magenta_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198405,8 +210677,8 @@ "lit": false } }, - "minecraft:magenta_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198416,8 +210688,8 @@ "lit": true } }, - "minecraft:magenta_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198427,8 +210699,8 @@ "lit": true } }, - "minecraft:magenta_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198438,8 +210710,8 @@ "lit": false } }, - "minecraft:magenta_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198449,8 +210721,8 @@ "lit": false } }, - "minecraft:magenta_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198460,8 +210732,8 @@ "lit": true } }, - "minecraft:magenta_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198471,8 +210743,8 @@ "lit": true } }, - "minecraft:magenta_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198482,8 +210754,8 @@ "lit": false } }, - "minecraft:magenta_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:magenta_candle", + "minecraft:purple_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198493,8 +210765,8 @@ "lit": false } }, - "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198504,8 +210776,8 @@ "lit": true } }, - "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198515,8 +210787,8 @@ "lit": true } }, - "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198526,8 +210798,8 @@ "lit": false } }, - "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198537,8 +210809,8 @@ "lit": false } }, - "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198548,8 +210820,8 @@ "lit": true } }, - "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198559,8 +210831,8 @@ "lit": true } }, - "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198570,8 +210842,8 @@ "lit": false } }, - "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198581,8 +210853,8 @@ "lit": false } }, - "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198592,8 +210864,8 @@ "lit": true } }, - "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198603,8 +210875,8 @@ "lit": true } }, - "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198614,8 +210886,8 @@ "lit": false } }, - "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198625,8 +210897,8 @@ "lit": false } }, - "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198636,8 +210908,8 @@ "lit": true } }, - "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198647,8 +210919,8 @@ "lit": true } }, - "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198658,8 +210930,8 @@ "lit": false } }, - "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_blue_candle", + "minecraft:blue_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198669,8 +210941,8 @@ "lit": false } }, - "minecraft:yellow_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198680,8 +210952,8 @@ "lit": true } }, - "minecraft:yellow_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198691,8 +210963,8 @@ "lit": true } }, - "minecraft:yellow_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198702,8 +210974,8 @@ "lit": false } }, - "minecraft:yellow_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198713,8 +210985,8 @@ "lit": false } }, - "minecraft:yellow_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198724,8 +210996,8 @@ "lit": true } }, - "minecraft:yellow_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198735,8 +211007,8 @@ "lit": true } }, - "minecraft:yellow_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198746,8 +211018,8 @@ "lit": false } }, - "minecraft:yellow_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198757,8 +211029,8 @@ "lit": false } }, - "minecraft:yellow_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198768,8 +211040,8 @@ "lit": true } }, - "minecraft:yellow_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198779,8 +211051,8 @@ "lit": true } }, - "minecraft:yellow_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198790,8 +211062,8 @@ "lit": false } }, - "minecraft:yellow_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198801,8 +211073,8 @@ "lit": false } }, - "minecraft:yellow_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198812,8 +211084,8 @@ "lit": true } }, - "minecraft:yellow_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198823,8 +211095,8 @@ "lit": true } }, - "minecraft:yellow_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198834,8 +211106,8 @@ "lit": false } }, - "minecraft:yellow_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:yellow_candle", + "minecraft:brown_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198845,8 +211117,8 @@ "lit": false } }, - "minecraft:lime_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198856,8 +211128,8 @@ "lit": true } }, - "minecraft:lime_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198867,8 +211139,8 @@ "lit": true } }, - "minecraft:lime_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198878,8 +211150,8 @@ "lit": false } }, - "minecraft:lime_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -198889,8 +211161,8 @@ "lit": false } }, - "minecraft:lime_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198900,8 +211172,8 @@ "lit": true } }, - "minecraft:lime_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198911,8 +211183,8 @@ "lit": true } }, - "minecraft:lime_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198922,8 +211194,8 @@ "lit": false } }, - "minecraft:lime_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -198933,8 +211205,8 @@ "lit": false } }, - "minecraft:lime_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198944,8 +211216,8 @@ "lit": true } }, - "minecraft:lime_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198955,8 +211227,8 @@ "lit": true } }, - "minecraft:lime_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198966,8 +211238,8 @@ "lit": false } }, - "minecraft:lime_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -198977,8 +211249,8 @@ "lit": false } }, - "minecraft:lime_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198988,8 +211260,8 @@ "lit": true } }, - "minecraft:lime_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -198999,8 +211271,8 @@ "lit": true } }, - "minecraft:lime_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199010,8 +211282,8 @@ "lit": false } }, - "minecraft:lime_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:lime_candle", + "minecraft:green_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199021,8 +211293,8 @@ "lit": false } }, - "minecraft:pink_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -199032,8 +211304,8 @@ "lit": true } }, - "minecraft:pink_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -199043,8 +211315,8 @@ "lit": true } }, - "minecraft:pink_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -199054,8 +211326,8 @@ "lit": false } }, - "minecraft:pink_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -199065,8 +211337,8 @@ "lit": false } }, - "minecraft:pink_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -199076,8 +211348,8 @@ "lit": true } }, - "minecraft:pink_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -199087,8 +211359,8 @@ "lit": true } }, - "minecraft:pink_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -199098,8 +211370,8 @@ "lit": false } }, - "minecraft:pink_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -199109,8 +211381,8 @@ "lit": false } }, - "minecraft:pink_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -199120,8 +211392,8 @@ "lit": true } }, - "minecraft:pink_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -199131,8 +211403,8 @@ "lit": true } }, - "minecraft:pink_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -199142,8 +211414,8 @@ "lit": false } }, - "minecraft:pink_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -199153,8 +211425,8 @@ "lit": false } }, - "minecraft:pink_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199164,8 +211436,8 @@ "lit": true } }, - "minecraft:pink_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199175,8 +211447,8 @@ "lit": true } }, - "minecraft:pink_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199186,8 +211458,8 @@ "lit": false } }, - "minecraft:pink_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:pink_candle", + "minecraft:red_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199197,8 +211469,8 @@ "lit": false } }, - "minecraft:gray_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -199208,8 +211480,8 @@ "lit": true } }, - "minecraft:gray_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -199219,8 +211491,8 @@ "lit": true } }, - "minecraft:gray_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -199230,8 +211502,8 @@ "lit": false } }, - "minecraft:gray_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 271, "piston_behavior": "destroy", @@ -199241,8 +211513,8 @@ "lit": false } }, - "minecraft:gray_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -199252,8 +211524,8 @@ "lit": true } }, - "minecraft:gray_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -199263,8 +211535,8 @@ "lit": true } }, - "minecraft:gray_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -199274,8 +211546,8 @@ "lit": false } }, - "minecraft:gray_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 272, "piston_behavior": "destroy", @@ -199285,8 +211557,8 @@ "lit": false } }, - "minecraft:gray_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -199296,8 +211568,8 @@ "lit": true } }, - "minecraft:gray_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -199307,8 +211579,8 @@ "lit": true } }, - "minecraft:gray_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -199318,8 +211590,8 @@ "lit": false } }, - "minecraft:gray_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 273, "piston_behavior": "destroy", @@ -199329,8 +211601,8 @@ "lit": false } }, - "minecraft:gray_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199340,8 +211612,8 @@ "lit": true } }, - "minecraft:gray_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199351,8 +211623,8 @@ "lit": true } }, - "minecraft:gray_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199362,8 +211634,8 @@ "lit": false } }, - "minecraft:gray_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:gray_candle", + "minecraft:black_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", "block_hardness": 0.1, "collision_index": 274, "piston_behavior": "destroy", @@ -199373,3264 +211645,3250 @@ "lit": false } }, - "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, "lit": true } }, - "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "lit": false } }, - "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:white_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:white_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "lit": true } }, - "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:white_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:white_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, "lit": false } }, - "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:orange_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:orange_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, "lit": true } }, - "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:orange_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:orange_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "lit": false } }, - "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:magenta_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:magenta_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "lit": true } }, - "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:magenta_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:magenta_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, "lit": false } }, - "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:light_blue_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:light_blue_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, "lit": true } }, - "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:light_blue_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:light_blue_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "lit": false } }, - "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:yellow_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:yellow_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "lit": true } }, - "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:yellow_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:yellow_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, "lit": false } }, - "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:lime_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:lime_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, "lit": true } }, - "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:lime_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:lime_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:pink_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:pink_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, "lit": true } }, - "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:pink_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:pink_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, "lit": false } }, - "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:light_gray_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:gray_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:gray_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:gray_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:gray_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, "lit": false } }, - "minecraft:cyan_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:light_gray_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:light_gray_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, "lit": true } }, - "minecraft:cyan_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:light_gray_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:light_gray_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:cyan_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:cyan_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, "lit": true } }, - "minecraft:cyan_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:cyan_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:cyan_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, "lit": false } }, - "minecraft:cyan_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:purple_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:purple_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:purple_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:purple_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, "lit": false } }, - "minecraft:cyan_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:blue_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:blue_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, "lit": true } }, - "minecraft:cyan_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:blue_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:blue_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:brown_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:brown_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, "lit": true } }, - "minecraft:cyan_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:brown_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:brown_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, "lit": false } }, - "minecraft:cyan_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:green_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:green_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:green_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:green_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, "lit": false } }, - "minecraft:cyan_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:red_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:red_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, "lit": true } }, - "minecraft:cyan_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:red_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:red_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:black_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:black_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, "lit": true } }, - "minecraft:cyan_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:black_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:black_candle_cake", + "block_hardness": 0.5, + "collision_index": 275, "piston_behavior": "destroy", + "pick_item": "minecraft:cake", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, "lit": false } }, - "minecraft:cyan_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:amethyst_block": { + "bedrock_identifier": "minecraft:amethyst_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:budding_amethyst": { + "bedrock_identifier": "minecraft:budding_amethyst", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": false + }, + "minecraft:amethyst_cluster[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 276, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "facing_direction": 2 } }, - "minecraft:cyan_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:amethyst_cluster[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 276, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "facing_direction": 2 } }, - "minecraft:cyan_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:amethyst_cluster[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 277, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "facing_direction": 5 } }, - "minecraft:cyan_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:amethyst_cluster[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 277, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "facing_direction": 5 } }, - "minecraft:cyan_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:cyan_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:amethyst_cluster[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 278, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:amethyst_cluster[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 278, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "facing_direction": 3 } }, - "minecraft:purple_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:amethyst_cluster[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 279, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "facing_direction": 4 } }, - "minecraft:purple_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:amethyst_cluster[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 279, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "facing_direction": 4 } }, - "minecraft:purple_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:amethyst_cluster[facing=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 280, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "facing_direction": 1 } }, - "minecraft:purple_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:amethyst_cluster[facing=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 280, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "facing_direction": 1 } }, - "minecraft:purple_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:amethyst_cluster[facing=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 281, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "facing_direction": 0 } }, - "minecraft:purple_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:amethyst_cluster[facing=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 281, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "facing_direction": 0 } }, - "minecraft:purple_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:large_amethyst_bud[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 282, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "facing_direction": 2 } }, - "minecraft:purple_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:large_amethyst_bud[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 282, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "facing_direction": 2 } }, - "minecraft:purple_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:large_amethyst_bud[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 283, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "facing_direction": 5 } }, - "minecraft:purple_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:large_amethyst_bud[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 283, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "facing_direction": 5 } }, - "minecraft:purple_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:large_amethyst_bud[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 284, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "facing_direction": 3 } }, - "minecraft:purple_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:large_amethyst_bud[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 284, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "facing_direction": 3 } }, - "minecraft:purple_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:large_amethyst_bud[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 285, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "facing_direction": 4 } }, - "minecraft:purple_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:large_amethyst_bud[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 285, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "facing_direction": 4 } }, - "minecraft:purple_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:large_amethyst_bud[facing=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 286, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "facing_direction": 1 } }, - "minecraft:purple_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:purple_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:large_amethyst_bud[facing=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 286, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "facing_direction": 1 } }, - "minecraft:blue_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:large_amethyst_bud[facing=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 287, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "facing_direction": 0 } }, - "minecraft:blue_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:large_amethyst_bud[facing=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 287, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "facing_direction": 0 } }, - "minecraft:blue_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:medium_amethyst_bud[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 288, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "facing_direction": 2 } }, - "minecraft:blue_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:medium_amethyst_bud[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 288, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "facing_direction": 2 } }, - "minecraft:blue_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:medium_amethyst_bud[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 289, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "facing_direction": 5 } }, - "minecraft:blue_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:medium_amethyst_bud[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 289, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "facing_direction": 5 } }, - "minecraft:blue_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:medium_amethyst_bud[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 290, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "facing_direction": 3 } }, - "minecraft:blue_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:medium_amethyst_bud[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 290, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "facing_direction": 3 } }, - "minecraft:blue_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:medium_amethyst_bud[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 291, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "facing_direction": 4 } }, - "minecraft:blue_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:medium_amethyst_bud[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 291, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "facing_direction": 4 } }, - "minecraft:blue_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:medium_amethyst_bud[facing=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 292, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "facing_direction": 1 } }, - "minecraft:blue_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:medium_amethyst_bud[facing=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 292, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "facing_direction": 1 } }, - "minecraft:blue_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:medium_amethyst_bud[facing=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 293, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "facing_direction": 0 } }, - "minecraft:blue_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:medium_amethyst_bud[facing=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 293, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "facing_direction": 0 } }, - "minecraft:blue_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:small_amethyst_bud[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 294, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "facing_direction": 2 } }, - "minecraft:blue_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:blue_candle", - "block_hardness": 0.1, - "collision_index": 274, + "minecraft:small_amethyst_bud[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 294, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "facing_direction": 2 } }, - "minecraft:brown_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:small_amethyst_bud[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 295, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "facing_direction": 5 } }, - "minecraft:brown_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:small_amethyst_bud[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 295, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "facing_direction": 5 } }, - "minecraft:brown_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:small_amethyst_bud[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 296, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "facing_direction": 3 } }, - "minecraft:brown_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 271, + "minecraft:small_amethyst_bud[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 296, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "facing_direction": 3 } }, - "minecraft:brown_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:small_amethyst_bud[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 297, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "facing_direction": 4 } }, - "minecraft:brown_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:small_amethyst_bud[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 297, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "facing_direction": 4 } }, - "minecraft:brown_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:small_amethyst_bud[facing=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 298, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "facing_direction": 1 } }, - "minecraft:brown_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 272, + "minecraft:small_amethyst_bud[facing=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 298, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "facing_direction": 1 } }, - "minecraft:brown_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:small_amethyst_bud[facing=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 299, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "facing_direction": 0 } }, - "minecraft:brown_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 273, + "minecraft:small_amethyst_bud[facing=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 299, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "facing_direction": 0 } }, - "minecraft:brown_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:tuff": { + "bedrock_identifier": "minecraft:tuff", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:calcite": { + "bedrock_identifier": "minecraft:calcite", + "block_hardness": 0.75, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:tinted_glass": { + "bedrock_identifier": "minecraft:tinted_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:powder_snow": { + "bedrock_identifier": "minecraft:powder_snow", + "block_hardness": 0.25, + "collision_index": 0, + "pick_item": "minecraft:powder_snow_bucket", + "can_break_with_hand": true + }, + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "powered_bit": false } }, - "minecraft:brown_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "powered_bit": false } }, - "minecraft:brown_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "powered_bit": false } }, - "minecraft:brown_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "powered_bit": false } }, - "minecraft:brown_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "powered_bit": false } }, - "minecraft:brown_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:brown_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "powered_bit": false } }, - "minecraft:green_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "powered_bit": true } }, - "minecraft:green_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "powered_bit": true } }, - "minecraft:green_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "powered_bit": true } }, - "minecraft:green_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "powered_bit": true } }, - "minecraft:green_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "powered_bit": true } }, - "minecraft:green_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "powered_bit": true } }, - "minecraft:green_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "powered_bit": true } }, - "minecraft:green_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "powered_bit": true } }, - "minecraft:green_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "powered_bit": true } }, - "minecraft:green_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "powered_bit": true } }, - "minecraft:green_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "powered_bit": true } }, - "minecraft:green_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "powered_bit": true } }, - "minecraft:green_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "powered_bit": true } }, - "minecraft:green_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "powered_bit": true } }, - "minecraft:green_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "powered_bit": true } }, - "minecraft:green_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:green_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "powered_bit": true } }, - "minecraft:red_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "powered_bit": true } }, - "minecraft:red_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "powered_bit": true } }, - "minecraft:red_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "powered_bit": true } }, - "minecraft:red_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "powered_bit": true } }, - "minecraft:red_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "powered_bit": true } }, - "minecraft:red_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "powered_bit": true } }, - "minecraft:red_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "powered_bit": true } }, - "minecraft:red_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "powered_bit": true } }, - "minecraft:red_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "powered_bit": true } }, - "minecraft:red_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "powered_bit": true } }, - "minecraft:red_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "powered_bit": true } }, - "minecraft:red_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "powered_bit": true } }, - "minecraft:red_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "powered_bit": true } }, - "minecraft:red_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "powered_bit": true } }, - "minecraft:red_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "powered_bit": true } }, - "minecraft:red_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:red_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "powered_bit": true } }, - "minecraft:black_candle[candles=1,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "powered_bit": true } }, - "minecraft:black_candle[candles=1,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": true + "powered_bit": true } }, - "minecraft:black_candle[candles=1,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "powered_bit": true } }, - "minecraft:black_candle[candles=1,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 271, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 0, - "lit": false + "powered_bit": true } }, - "minecraft:black_candle[candles=2,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "powered_bit": true } }, - "minecraft:black_candle[candles=2,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": true + "powered_bit": true } }, - "minecraft:black_candle[candles=2,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "powered_bit": true } }, - "minecraft:black_candle[candles=2,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 272, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 1, - "lit": false + "powered_bit": true } }, - "minecraft:black_candle[candles=3,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "powered_bit": true } }, - "minecraft:black_candle[candles=3,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": true + "powered_bit": true } }, - "minecraft:black_candle[candles=3,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "powered_bit": true } }, - "minecraft:black_candle[candles=3,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 273, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 2, - "lit": false + "powered_bit": true } }, - "minecraft:black_candle[candles=4,lit=true,waterlogged=true]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "powered_bit": true } }, - "minecraft:black_candle[candles=4,lit=true,waterlogged=false]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": true + "powered_bit": true } }, - "minecraft:black_candle[candles=4,lit=false,waterlogged=true]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "powered_bit": true } }, - "minecraft:black_candle[candles=4,lit=false,waterlogged=false]": { - "bedrock_identifier": "minecraft:black_candle", - "block_hardness": 0.1, - "collision_index": 274, - "piston_behavior": "destroy", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "candles": 3, - "lit": false + "powered_bit": true } }, - "minecraft:candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:white_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:white_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:white_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:white_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:orange_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:orange_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:orange_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:orange_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:magenta_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:magenta_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:magenta_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:magenta_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:light_blue_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:light_blue_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:light_blue_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:light_blue_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:yellow_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:yellow_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:yellow_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:yellow_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:lime_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:lime_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:lime_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:lime_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:pink_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:pink_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:pink_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:pink_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:gray_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:gray_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:gray_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:gray_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:light_gray_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:light_gray_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:light_gray_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:light_gray_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:cyan_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:cyan_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:cyan_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:cyan_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:purple_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:purple_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:purple_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:purple_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:blue_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:blue_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:blue_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:blue_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:brown_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:brown_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:brown_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:brown_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:green_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:green_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:green_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:green_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:red_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:red_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:red_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:red_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:black_candle_cake[lit=true]": { - "bedrock_identifier": "minecraft:black_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": true + "powered_bit": true } }, - "minecraft:black_candle_cake[lit=false]": { - "bedrock_identifier": "minecraft:black_candle_cake", - "block_hardness": 0.5, - "collision_index": 275, - "piston_behavior": "destroy", - "pick_item": "minecraft:cake", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "lit": false + "powered_bit": true } }, - "minecraft:amethyst_block": { - "bedrock_identifier": "minecraft:amethyst_block", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", "block_hardness": 1.5, - "collision_index": 1, - "can_break_with_hand": false + "collision_index": 61, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true + } }, - "minecraft:budding_amethyst": { - "bedrock_identifier": "minecraft:budding_amethyst", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", "block_hardness": 1.5, - "collision_index": 1, - "piston_behavior": "destroy", - "can_break_with_hand": false + "collision_index": 61, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true + } }, - "minecraft:amethyst_cluster[facing=north,waterlogged=true]": { - "bedrock_identifier": "minecraft:amethyst_cluster", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", "block_hardness": 1.5, - "collision_index": 276, - "piston_behavior": "destroy", + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2 + "powered_bit": true } }, - "minecraft:amethyst_cluster[facing=north,waterlogged=false]": { - "bedrock_identifier": "minecraft:amethyst_cluster", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", "block_hardness": 1.5, - "collision_index": 276, - "piston_behavior": "destroy", + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2 + "powered_bit": true } }, - "minecraft:amethyst_cluster[facing=east,waterlogged=true]": { - "bedrock_identifier": "minecraft:amethyst_cluster", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", "block_hardness": 1.5, - "collision_index": 277, - "piston_behavior": "destroy", + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5 + "powered_bit": true } }, - "minecraft:amethyst_cluster[facing=east,waterlogged=false]": { - "bedrock_identifier": "minecraft:amethyst_cluster", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", "block_hardness": 1.5, - "collision_index": 277, - "piston_behavior": "destroy", + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5 + "powered_bit": true } }, - "minecraft:amethyst_cluster[facing=south,waterlogged=true]": { - "bedrock_identifier": "minecraft:amethyst_cluster", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", "block_hardness": 1.5, - "collision_index": 278, - "piston_behavior": "destroy", + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3 + "powered_bit": true } }, - "minecraft:amethyst_cluster[facing=south,waterlogged=false]": { - "bedrock_identifier": "minecraft:amethyst_cluster", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", "block_hardness": 1.5, - "collision_index": 278, - "piston_behavior": "destroy", + "collision_index": 61, + "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3 + "powered_bit": true } }, - "minecraft:amethyst_cluster[facing=west,waterlogged=true]": { - "bedrock_identifier": "minecraft:amethyst_cluster", - "block_hardness": 1.5, - "collision_index": 279, + "minecraft:sculk": { + "bedrock_identifier": "minecraft:sculk", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4 + "multi_face_direction_bits": 63 } }, - "minecraft:amethyst_cluster[facing=west,waterlogged=false]": { - "bedrock_identifier": "minecraft:amethyst_cluster", - "block_hardness": 1.5, - "collision_index": 279, + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4 + "multi_face_direction_bits": 55 } }, - "minecraft:amethyst_cluster[facing=up,waterlogged=true]": { - "bedrock_identifier": "minecraft:amethyst_cluster", - "block_hardness": 1.5, - "collision_index": 280, + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1 + "multi_face_direction_bits": 63 } }, - "minecraft:amethyst_cluster[facing=up,waterlogged=false]": { - "bedrock_identifier": "minecraft:amethyst_cluster", - "block_hardness": 1.5, - "collision_index": 280, + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1 + "multi_face_direction_bits": 55 } }, - "minecraft:amethyst_cluster[facing=down,waterlogged=true]": { - "bedrock_identifier": "minecraft:amethyst_cluster", - "block_hardness": 1.5, - "collision_index": 281, + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0 + "multi_face_direction_bits": 61 } }, - "minecraft:amethyst_cluster[facing=down,waterlogged=false]": { - "bedrock_identifier": "minecraft:amethyst_cluster", - "block_hardness": 1.5, - "collision_index": 281, + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0 + "multi_face_direction_bits": 53 } }, - "minecraft:large_amethyst_bud[facing=north,waterlogged=true]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 282, + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2 + "multi_face_direction_bits": 61 } }, - "minecraft:large_amethyst_bud[facing=north,waterlogged=false]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 282, + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2 + "multi_face_direction_bits": 53 } }, - "minecraft:large_amethyst_bud[facing=east,waterlogged=true]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 283, + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5 + "multi_face_direction_bits": 59 } }, - "minecraft:large_amethyst_bud[facing=east,waterlogged=false]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 283, + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5 + "multi_face_direction_bits": 51 } }, - "minecraft:large_amethyst_bud[facing=south,waterlogged=true]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 284, + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3 + "multi_face_direction_bits": 59 } }, - "minecraft:large_amethyst_bud[facing=south,waterlogged=false]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 284, + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3 + "multi_face_direction_bits": 51 } }, - "minecraft:large_amethyst_bud[facing=west,waterlogged=true]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 285, + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4 + "multi_face_direction_bits": 57 } }, - "minecraft:large_amethyst_bud[facing=west,waterlogged=false]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 285, + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4 + "multi_face_direction_bits": 49 } }, - "minecraft:large_amethyst_bud[facing=up,waterlogged=true]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 286, + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1 + "multi_face_direction_bits": 57 } }, - "minecraft:large_amethyst_bud[facing=up,waterlogged=false]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 286, + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1 + "multi_face_direction_bits": 49 } }, - "minecraft:large_amethyst_bud[facing=down,waterlogged=true]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 287, + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0 + "multi_face_direction_bits": 47 } }, - "minecraft:large_amethyst_bud[facing=down,waterlogged=false]": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 287, + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0 + "multi_face_direction_bits": 39 } }, - "minecraft:medium_amethyst_bud[facing=north,waterlogged=true]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 288, + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2 + "multi_face_direction_bits": 47 } }, - "minecraft:medium_amethyst_bud[facing=north,waterlogged=false]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 288, + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2 + "multi_face_direction_bits": 39 } }, - "minecraft:medium_amethyst_bud[facing=east,waterlogged=true]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 289, + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5 + "multi_face_direction_bits": 45 } }, - "minecraft:medium_amethyst_bud[facing=east,waterlogged=false]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 289, + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5 + "multi_face_direction_bits": 37 } }, - "minecraft:medium_amethyst_bud[facing=south,waterlogged=true]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 290, + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3 + "multi_face_direction_bits": 45 } }, - "minecraft:medium_amethyst_bud[facing=south,waterlogged=false]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 290, + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3 + "multi_face_direction_bits": 37 } }, - "minecraft:medium_amethyst_bud[facing=west,waterlogged=true]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 291, + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4 + "multi_face_direction_bits": 43 } }, - "minecraft:medium_amethyst_bud[facing=west,waterlogged=false]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 291, + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4 + "multi_face_direction_bits": 35 } }, - "minecraft:medium_amethyst_bud[facing=up,waterlogged=true]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 292, + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1 + "multi_face_direction_bits": 43 } }, - "minecraft:medium_amethyst_bud[facing=up,waterlogged=false]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 292, + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1 + "multi_face_direction_bits": 35 } }, - "minecraft:medium_amethyst_bud[facing=down,waterlogged=true]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 293, + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0 + "multi_face_direction_bits": 41 } }, - "minecraft:medium_amethyst_bud[facing=down,waterlogged=false]": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 293, + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0 + "multi_face_direction_bits": 33 } }, - "minecraft:small_amethyst_bud[facing=north,waterlogged=true]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 294, + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2 + "multi_face_direction_bits": 41 } }, - "minecraft:small_amethyst_bud[facing=north,waterlogged=false]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 294, + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 2 + "multi_face_direction_bits": 33 } }, - "minecraft:small_amethyst_bud[facing=east,waterlogged=true]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 295, + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5 + "multi_face_direction_bits": 31 } }, - "minecraft:small_amethyst_bud[facing=east,waterlogged=false]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 295, + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 5 + "multi_face_direction_bits": 23 } }, - "minecraft:small_amethyst_bud[facing=south,waterlogged=true]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 296, + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3 + "multi_face_direction_bits": 31 } }, - "minecraft:small_amethyst_bud[facing=south,waterlogged=false]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 296, + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 3 + "multi_face_direction_bits": 23 } }, - "minecraft:small_amethyst_bud[facing=west,waterlogged=true]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 297, + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4 + "multi_face_direction_bits": 29 } }, - "minecraft:small_amethyst_bud[facing=west,waterlogged=false]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 297, + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 4 + "multi_face_direction_bits": 21 } }, - "minecraft:small_amethyst_bud[facing=up,waterlogged=true]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 298, + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1 + "multi_face_direction_bits": 29 } }, - "minecraft:small_amethyst_bud[facing=up,waterlogged=false]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 298, + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 1 + "multi_face_direction_bits": 21 } }, - "minecraft:small_amethyst_bud[facing=down,waterlogged=true]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 299, + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0 + "multi_face_direction_bits": 27 } }, - "minecraft:small_amethyst_bud[facing=down,waterlogged=false]": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "block_hardness": 1.5, - "collision_index": 299, + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "facing_direction": 0 + "multi_face_direction_bits": 19 } }, - "minecraft:tuff": { - "bedrock_identifier": "minecraft:tuff", - "block_hardness": 1.5, - "collision_index": 1, - "can_break_with_hand": false - }, - "minecraft:calcite": { - "bedrock_identifier": "minecraft:calcite", - "block_hardness": 0.75, - "collision_index": 1, - "can_break_with_hand": false - }, - "minecraft:tinted_glass": { - "bedrock_identifier": "minecraft:tinted_glass", - "block_hardness": 0.3, - "collision_index": 1, - "can_break_with_hand": true - }, - "minecraft:powder_snow": { - "bedrock_identifier": "minecraft:powder_snow", - "block_hardness": 0.25, + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, "collision_index": 0, - "pick_item": "minecraft:powder_snow_bucket", - "can_break_with_hand": true - }, - "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": false + "multi_face_direction_bits": 27 } }, - "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": false + "multi_face_direction_bits": 19 } }, - "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": false + "multi_face_direction_bits": 25 } }, - "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": false + "multi_face_direction_bits": 17 } }, - "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": false + "multi_face_direction_bits": 25 } }, - "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": false + "multi_face_direction_bits": 17 } }, - "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 15 } }, - "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 7 } }, - "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 15 } }, - "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 7 } }, - "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 13 } }, - "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 5 } }, - "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 13 } }, - "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 5 } }, - "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 11 } }, - "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 3 } }, - "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 11 } }, - "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 3 } }, - "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 9 } }, - "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 1 } }, - "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 9 } }, - "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 1 } }, - "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 62 } }, - "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 54 } }, - "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 62 } }, - "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 54 } }, - "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 60 } }, - "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 52 } }, - "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 60 } }, - "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 52 } }, - "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 58 } }, - "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 50 } }, - "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 58 } }, - "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 50 } }, - "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 56 } }, - "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 48 } }, - "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 56 } }, - "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 48 } }, - "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 46 } }, - "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 38 } }, - "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 46 } }, - "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 38 } }, - "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 44 } }, - "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 36 } }, - "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 44 } }, - "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 36 } }, - "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 42 } }, - "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 34 } }, - "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 42 } }, - "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 34 } }, - "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 40 } }, - "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 32 } }, - "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 40 } }, - "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 32 } }, - "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 30 } }, - "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 22 } }, - "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 30 } }, - "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 22 } }, - "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 28 } }, - "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 20 } }, - "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 28 } }, - "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 20 } }, - "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 26 } }, - "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 18 } }, - "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 26 } }, - "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 18 } }, - "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 24 } }, - "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 16 } }, - "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 24 } }, - "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 16 } }, - "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 14 } }, - "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 6 } }, - "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 14 } }, - "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 6 } }, - "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 12 } }, - "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 4 } }, - "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 12 } }, - "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 4 } }, - "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 10 } }, - "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 2 } }, - "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 10 } }, - "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 2 } }, - "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 8 } }, - "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 0 } }, - "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 8 } }, - "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, - "has_block_entity": true, + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:sculk_vein", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "multi_face_direction_bits": 0 } }, - "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, + "minecraft:sculk_catalyst[bloom=true]": { + "bedrock_identifier": "minecraft:sculk_catalyst", + "block_hardness": 3.0, + "collision_index": 1, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "bloom": true } }, - "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, - "collision_index": 61, + "minecraft:sculk_catalyst[bloom=false]": { + "bedrock_identifier": "minecraft:sculk_catalyst", + "block_hardness": 3.0, + "collision_index": 1, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "bloom": false } }, - "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, + "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, "collision_index": 61, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "active": true, + "can_summon": true } }, - "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, + "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, "collision_index": 61, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "active": true, + "can_summon": true } }, - "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, + "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, "collision_index": 61, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "active": false, + "can_summon": true } }, - "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, + "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, "collision_index": 61, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "active": false, + "can_summon": true } }, - "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, + "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, "collision_index": 61, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "active": true, + "can_summon": false } }, - "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, + "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, "collision_index": 61, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "active": true, + "can_summon": false } }, - "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=true]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, + "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, "collision_index": 61, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "active": false, + "can_summon": false } }, - "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=false]": { - "bedrock_identifier": "minecraft:sculk_sensor", - "block_hardness": 1.5, + "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, "collision_index": 61, "has_block_entity": true, "can_break_with_hand": true, "bedrock_states": { - "powered_bit": true + "active": false, + "can_summon": false } }, "minecraft:oxidized_copper": { @@ -211330,6 +223588,12 @@ "collision_index": 1, "can_break_with_hand": true }, + "minecraft:mud": { + "bedrock_identifier": "minecraft:mud", + "block_hardness": 0.5, + "collision_index": 63, + "can_break_with_hand": true + }, "minecraft:deepslate[axis=x]": { "bedrock_identifier": "minecraft:deepslate", "block_hardness": 3.0, @@ -231735,5 +243999,99 @@ "bedrock_states": { "update_bit": false } + }, + "minecraft:ochre_froglight[axis=x]": { + "bedrock_identifier": "minecraft:ochre_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:ochre_froglight[axis=y]": { + "bedrock_identifier": "minecraft:ochre_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:ochre_froglight[axis=z]": { + "bedrock_identifier": "minecraft:ochre_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:verdant_froglight[axis=x]": { + "bedrock_identifier": "minecraft:verdant_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:verdant_froglight[axis=y]": { + "bedrock_identifier": "minecraft:verdant_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:verdant_froglight[axis=z]": { + "bedrock_identifier": "minecraft:verdant_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:pearlescent_froglight[axis=x]": { + "bedrock_identifier": "minecraft:pearlescent_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:pearlescent_froglight[axis=y]": { + "bedrock_identifier": "minecraft:pearlescent_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:pearlescent_froglight[axis=z]": { + "bedrock_identifier": "minecraft:pearlescent_froglight", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:frogspawn": { + "bedrock_identifier": "minecraft:frog_spawn", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:reinforced_deepslate": { + "bedrock_identifier": "minecraft:reinforced_deepslate", + "block_hardness": 55.0, + "collision_index": 1, + "can_break_with_hand": true } } \ No newline at end of file diff --git a/submodules/MiNET b/submodules/MiNET index df0d4ffb8..55e57dc26 160000 --- a/submodules/MiNET +++ b/submodules/MiNET @@ -1 +1 @@ -Subproject commit df0d4ffb8c008654271e0c94187cada0abf6a30b +Subproject commit 55e57dc262a306e4ce696ce28ab90d88beaa096c